Created
October 15, 2015 09:46
-
-
Save lpsinger/ef57849b6877db5506ed to your computer and use it in GitHub Desktop.
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
| $ cd /tmp | |
| $ virtualenv --python=/usr/bin/python2.7 hp | |
| Running virtualenv with interpreter /usr/bin/python2.7 | |
| New python executable in hp/bin/python | |
| Installing setuptools, pip, wheel...done. | |
| $ source hp/bin/activate | |
| (hp)$ pip install numpy | |
| You are using pip version 7.0.3, however version 7.1.2 is available. | |
| You should consider upgrading via the 'pip install --upgrade pip' command. | |
| Collecting numpy | |
| Downloading numpy-1.10.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (3.7MB) | |
| 100% |████████████████████████████████| 3.7MB 130kB/s | |
| Installing collected packages: numpy | |
| Successfully installed numpy-1.10.1 | |
| (hp)$ pip install healpy | |
| You are using pip version 7.0.3, however version 7.1.2 is available. | |
| You should consider upgrading via the 'pip install --upgrade pip' command. | |
| Collecting healpy | |
| Downloading healpy-1.9.0.tar.gz (4.0MB) | |
| 100% |████████████████████████████████| 4.0MB 110kB/s | |
| Collecting matplotlib (from healpy) | |
| Downloading matplotlib-1.4.3-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (47.6MB) | |
| 100% |████████████████████████████████| 47.6MB 9.7kB/s | |
| Requirement already satisfied (use --upgrade to upgrade): numpy in ./hp/lib/python2.7/site-packages (from healpy) | |
| Collecting six (from healpy) | |
| Downloading six-1.10.0-py2.py3-none-any.whl | |
| Collecting astropy (from healpy) | |
| Downloading astropy-1.0.5-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (6.4MB) | |
| 100% |████████████████████████████████| 6.4MB 73kB/s | |
| Collecting pytz (from matplotlib->healpy) | |
| Downloading pytz-2015.6-py2.py3-none-any.whl (475kB) | |
| 100% |████████████████████████████████| 475kB 728kB/s | |
| Collecting pyparsing!=2.0.0,>=1.5.6 (from matplotlib->healpy) | |
| Downloading pyparsing-2.0.3-py2.py3-none-any.whl | |
| Collecting python-dateutil (from matplotlib->healpy) | |
| Downloading python_dateutil-2.4.2-py2.py3-none-any.whl (188kB) | |
| 100% |████████████████████████████████| 192kB 2.3MB/s | |
| Collecting nose>=0.11.1 (from matplotlib->healpy) | |
| Downloading nose-1.3.7-py2-none-any.whl (154kB) | |
| 100% |████████████████████████████████| 155kB 2.6MB/s | |
| Collecting mock (from matplotlib->healpy) | |
| Downloading mock-1.3.0-py2.py3-none-any.whl (56kB) | |
| 100% |████████████████████████████████| 57kB 2.4MB/s | |
| Collecting funcsigs (from mock->matplotlib->healpy) | |
| Downloading funcsigs-0.4-py2.py3-none-any.whl | |
| Collecting pbr>=0.11 (from mock->matplotlib->healpy) | |
| Downloading pbr-1.8.1-py2.py3-none-any.whl (89kB) | |
| 100% |████████████████████████████████| 90kB 3.6MB/s | |
| Building wheels for collected packages: healpy | |
| Running setup.py bdist_wheel for healpy | |
| Stored in directory: /Users/leo/Library/Caches/pip/wheels/d3/fb/0d/81492acd60c156033b2b1328c68d0bd03f4ae2ec0f9c61a86e | |
| Successfully built healpy | |
| Installing collected packages: pytz, pyparsing, six, python-dateutil, nose, funcsigs, pbr, mock, matplotlib, astropy, healpy | |
| Successfully installed astropy-1.0.5 funcsigs-0.4 healpy-1.9.0 matplotlib-1.4.3 mock-1.3.0 nose-1.3.7 pbr-1.8.1 pyparsing-2.0.3 python-dateutil-2.4.2 pytz-2015.6 six-1.10.0 | |
| (hp)$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment