Created
December 23, 2016 13:26
-
-
Save stevedoyle/00d5ef0a7c4d3e19df7ebc58d5a70f63 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 setup | |
cd proj_folder | |
virtualenv venv | |
# or with a particular version of python | |
virtualenv -p /usr/bin/python2.7 venv | |
# Activate it | |
source venv/bin/activate | |
# Use pip to install packages as usual into the environment | |
# Deactivate it when done | |
deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment