Skip to content

Instantly share code, notes, and snippets.

@joshfinnie
Created October 2, 2013 14:42
Show Gist options
  • Save joshfinnie/6794843 to your computer and use it in GitHub Desktop.
Save joshfinnie/6794843 to your computer and use it in GitHub Desktop.
How I install Python on OS X
$ cd /tmp
$ curl -O http://python.org/ftp/python/X.Y.Z/Python-X.Y.Z.tgz
$ tar zxf Python-X.Y.Z.tgz
$ cd Python-X.Y.Z
$ ./configure --prefix=/usr/local/python/X.Y.Z
$ make
$ make install
$ wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O - | /usr/local/python/X.Y.Z/bin/python
$ /usr/local/python/X.Y.Z/bin/easy_install pip
$ /usr/local/python/X.Y.Z/bin/pip install virtualenv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment