Last active
April 19, 2016 23:00
-
-
Save Benoss/3aaae752be7a786c7b5d72148201d132 to your computer and use it in GitHub Desktop.
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
wget https://bootstrap.pypa.io/get-pip.py | |
sudo python get-pip.py | |
rm get-pip.py | |
sudo pip install virtualenv | |
#virtualenv --no-site-packages my_virtualenv_name | |
mkdir .virtualenvs | |
sudo pip install virtualenvwrapper | |
export WORKON_HOME=$HOME/.virtualenvs | |
export PROJECT_HOME=$HOME/git | |
source /usr/local/bin/virtualenvwrapper.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment