Skip to content

Instantly share code, notes, and snippets.

@JoeReis
Created August 9, 2014 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoeReis/a5f80c01fecdc3159358 to your computer and use it in GitHub Desktop.
Save JoeReis/a5f80c01fecdc3159358 to your computer and use it in GitHub Desktop.
Setup pip, virtualenv, virtualenvwrapper on a new Mac
easy_install pip
sudo pip install --upgrade setuptools
sudo pip install --upgrade distribute
sudo pip install virtualenv virtualenvwrapper
echo -e "\nsource /usr/local/bin/virtualenvwrapper.sh" >> .bash_profile
mkvirtualenv <your-virtual-env-name>
workon <your-virtual-env-name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment