Skip to content

Instantly share code, notes, and snippets.

@jworksuk
Last active May 25, 2016 21:20
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 jworksuk/006c7f05eec198bd5a84494bf2d00c21 to your computer and use it in GitHub Desktop.
Save jworksuk/006c7f05eec198bd5a84494bf2d00c21 to your computer and use it in GitHub Desktop.
Installing Python on Max OS X El Capitan

Installing Python Stuff on Max OS X El Capitan

Install Homebrew - http://brew.sh/

Install Python via brew

brew install python

Check your Python version

python --version

Check if Pip is installed

pip

Upgrade pip

pip install --upgrade pip

Install virtualenv

pip install virtualenv

Install virtualenvwrapper

pip install virtualenvwrapper

FYI

Found existing installation: six 1.4.1
    DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Uninstalling six-1.4.1:
Exception:

If you get an error that looks like the above and mentions uninstalling six, you can't because if this. You'll need to ignore the six package with the following command.

pip install virtualenvwrapper --ignore-installed six
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment