Pip can't confirm SSL certificate

荒凉一梦 提交于 2019-12-04 09:13:37

According to Paramiko installation documentation :

Versions supported :

  • Python 2.7
  • Python 3.4+

Looks like you are using incompatible version of Python

C:\Users\User>python -V
Python 3.6.4

Installation

pip3 install paramiko 

or

pip install paramiko

SSL: CERTIFICATE_VERIFY_FAILED can be caused by pip issue or python issue on Mac

Please upgrade pip to latest version for the same.

pip install --upgrade pip

After this issue should be resolved

Or try installing incremental

pip install incremental
Arun Babu

Using following commands helped me. please try this

  1. For upgrading pip

python -m pip install --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org --upgrade pip

  1. For installing new packages, eg numpy, pandas etc.

python -m pip install PACKAGE NAME --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!