Last active
January 23, 2018 19:48
-
-
Save mamun67/4999678dc6ed7bce714c67eaacc58316 to your computer and use it in GitHub Desktop.
Virtual Env Setup Pythom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
virtualenv venv --python=<Python version> | |
#for linux | |
$source venv/bin/activate | |
#for windows | |
./venv/Scripts/activate.bat | |
#install MS visual C++ | |
http://www.microsoft.com/en-us/download/details.aspx?id=44266 | |
#for windows we need to install the connector | |
http://dev.mysql.com/downloads/connector/c/6.0.html#downloads | |
pip install -r requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment