Created
April 5, 2011 00:37
-
-
Save slacy/902790 to your computer and use it in GitHub Desktop.
Crazy pip shell session. Note how I explicitly ask for 1.9 and yet I get 1.10. ugh!
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
(env)slacy@slacy-sunfire:~/src/pvn2$ pip install pymongo==1.9 | |
Downloading/unpacking pymongo==1.9 | |
Running setup.py egg_info for package pymongo | |
Installing collected packages: pymongo | |
Running setup.py install for pymongo | |
Successfully installed pymongo | |
Cleaning up... | |
(env)slacy@slacy-sunfire:~/src/pvn2$ python -c "import pymongo; print pymongo.version" | |
1.10 | |
(env)slacy@slacy-sunfire:~/src/pvn2$ pip uninstall pymongoUninstalling pymongo: | |
/home/slacy/src/pvn2/env/lib/python2.6/site-packages/bson | |
/home/slacy/src/pvn2/env/lib/python2.6/site-packages/gridfs | |
/home/slacy/src/pvn2/env/lib/python2.6/site-packages/pymongo | |
/home/slacy/src/pvn2/env/lib/python2.6/site-packages/pymongo-1.10-py2.6.egg-info | |
Proceed (y/n)? y | |
Successfully uninstalled pymongo | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment