Skip to content

Instantly share code, notes, and snippets.

@shurane
Forked from pithyless/gist:1208841
Last active August 29, 2015 13:56
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 shurane/8986278 to your computer and use it in GitHub Desktop.
Save shurane/8986278 to your computer and use it in GitHub Desktop.
Python installation instructions
#!/usr/bin/env bash
##Install python, assuming you already have homebrew: http://brew.sh/
brew install readline sqlite gdbm
brew install python --universal
python --version ##Python 2.7
##Install PIP
easy_install pip
pip install --upgrade setuptools virtualenv virtualenvwrapper
##Install virtualenv, virtualenvwrapper
pip install virtualenv virtualenvwrapper
mkvirtualenv test
deactivate
workon
rmvirtualenv test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment