-
-
Save bsodmike/5478306 to your computer and use it in GitHub Desktop.
python 2.7 install on Mac OS X 10.8 Mountain Lion using brew (pip, easy_install, virtualenv, virtualenvwrapper)
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
| brew install python --framework | |
| easy_install pip | |
| pip install virtualenv | |
| pip install virtualenvwrapper | |
| mkdir $HOME/.virtualenvs | |
| # homebrew python 2.7 | |
| echo 'export PATH="/usr/local/share/python:$PATH"' >> ~/.zshrc | |
| #virtualenv wrapper | |
| echo 'export WORKON_HOME=$HOME/.virtualenvs' >> ~/.zshrc | |
| echo 'source /usr/local/share/python/virtualenvwrapper.sh' >> ~/.zshrc |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Homebrew install notes