Soumya Ranjan Dhar
Soumya Ranjan Dhar

Reputation: 21

Not able to install Pymongo in Windows 10

I have used pip install pymongo but getting certificate verified failed . Is there any other way to install it.

Upvotes: 0

Views: 4209

Answers (3)

julian
julian

Reputation: 23

I recommend you use pip install as the comments mentioned easy install is depricated.

You can use python -m pip install pymongo.

Read further about pip and windows in this stackoverflow post, they also offer different alterantives.

Upvotes: 1

AdForte
AdForte

Reputation: 303

You can try to use easy_install from setuptools

python -m easy_install pymongo

or

python -m easy_install -U pymongo

or from the source

git clone git://github.com/mongodb/mongo-python-driver.git pymongo
cd pymongo/
python setup.py install

Edit: it seems that easy_install is deprecated (ty for the comment), but it still in the pymongo doc...

Upvotes: 0

AKX
AKX

Reputation: 169174

You can download the .whl file for your Python version and architecture from https://pypi.org/project/pymongo/#files, then install it with e.g.

pip install pymongo-3.8.0-cp37-cp37m-win32.whl

Upvotes: 0

Related Questions