Hello,

Im trying to install pymongo package to be able to connect to MongoDB using pip

pip install pymongo

but it produce the below error

Could not find a version that satisfies the requirement pymongo (from versions: )
No matching distribution found for pymongo

Recommended Answers

All 6 Replies

the link contain info about pumongo but not how to install it or what is the mean by the error produced when i try to install using pip

what is the mean by the error produced when i try to install using pip

Means that pymongo is not compatible with python 3.5 (or so I think).

If you're in windows, try the version from Christoph Gohlke's site Click Here !

Use wheel as posted bye Gribouillis.
PyMongo has C depencies so to avoid this Installing from source on Windows
Go here,when dowloaded your version.
Do e.g pip install pymongo-3.3.0-cp35-cp35m-win32.whl
Wheel(.whl) has all C depencies packed,no need to compile.

If you are on MS Windows, save yourself the trouble and install the Anaconda python distribution which comes with a native package manager called conda. Things which are extremely difficult to install on windows (e.g. Numpy, Scipy, Intel MKL dependencies) become a breeze without having to deal with weird dependency issues/wheels etc.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.