-
-
Save shurane/8986278 to your computer and use it in GitHub Desktop.
Python installation instructions
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
#!/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