Skip to content

Instantly share code, notes, and snippets.

@pmembrey
Last active December 14, 2015 12:48
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 pmembrey/5088859 to your computer and use it in GitHub Desktop.
Save pmembrey/5088859 to your computer and use it in GitHub Desktop.
Installing a specific version of pandas on OSX.
$ sudo easy_install pip
$ sudo pip install pandas==0.7.3
$ python
Python 2.7.2 (default, Jun 20 2012, 16:23:33)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
>>> pandas.__version__
'0.7.3'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment