Last active
May 29, 2017 14:50
-
-
Save mehmetkose/82b03db25ab585117bd30e8c35a5f38d to your computer and use it in GitHub Desktop.
bash script for virtualenvwrapper installer on mac os x
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
pip install virtualenv virtualenvwrapper | |
cp ~/.bash_profile ~/.bash_profile-org | |
printf '\n%s\n%s\n%s' '# virtualenv' 'export WORKON_HOME=~/virtualenvs' \ | |
'source /usr/local/bin/virtualenvwrapper.sh' >> ~/.bash_profile | |
source ~/.bash_profile | |
mkdir -p $WORKON_HOME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment