Skip to content

Instantly share code, notes, and snippets.

@mehmetkose
Last active May 29, 2017 14:50
Show Gist options
  • Save mehmetkose/82b03db25ab585117bd30e8c35a5f38d to your computer and use it in GitHub Desktop.
Save mehmetkose/82b03db25ab585117bd30e8c35a5f38d to your computer and use it in GitHub Desktop.
bash script for virtualenvwrapper installer on mac os x
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