I am currently trying to install the MongoDB driver for Python on my Mac OS X (mavericks).
But when I started
[ Dsl ~/Documents/python ] sudo easy_install pymongo
I get the following output
Searching for pymongo Best match: pymongo 2.7 Processing pymongo-2.7-py2.7-macosx-10.9-intel.egg Removing pymongo 2.7rc1 from easy-install.pth file Adding pymongo 2.7 to easy-install.pth file Using /Library/Python/2.7/site-packages/pymongo-2.7-py2.7-macosx-10.9-intel.egg Processing dependencies for pymongo Finished processing dependencies for pymongo
I try many different commands, but nothing works. How to install pymongo?
thanks for the help
Edit: when i try to use it in python script
I have this error
Traceback (most recent call last): File "./mongo.py", line 2, in <module> import pymongo ImportError: No module named 'pymongo'
source share