Reputation: 21
I have used pip install pymongo but getting certificate verified failed . Is there any other way to install it.
Upvotes: 0
Views: 4209
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
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
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