web-dev-qa-db-fra.com

Pip ne peut pas confirmer le certificat SSL

J'ai du mal à installer paramiko sur un système. Cette même commande a fonctionné plus tôt, mais quelque chose a changé et j'ai réinstallé Python, et maintenant paramiko ne s'installera pas. J'utilise Windows 7 avec Python 3.6.4. Pip renvoie l'erreur suivante:

C:\Users\me>pip --trusted-Host pypi.python.org install paramiko
Collecting paramiko
  Could not fetch URL https://pypi.python.org/simple/paramiko/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:777) - skipping
  Could not find a version that satisfies the requirement paramiko (from versions: )
No matching distribution found for paramiko

Comment puis-je réparer cela?

4
stesteve

Selon la documentation de Paramiko installation :

Versions prises en charge:

  • Python 2.7
  • Python 3.4+

On dirait que vous utilisez une version incompatible de Python

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

Installation

pip3 install paramiko 

ou

pip install paramiko

SSL: CERTIFICATE_VERIFY_FAILED peut être causé par pip problème ou problème python sur Mac

Veuillez mettre à niveau pip vers la dernière version pour la même chose.

pip install --upgrade pip

Après ce problème devrait être résolu

Ou essayez d'installer incrémental

pip install incremental
1
Prateek

L'utilisation des commandes suivantes m'a aidé. veuillez essayer ceci

  1. Pour la mise à niveau de pip

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

  1. Pour installer de nouveaux packages, par exemple numpy, pandas etc.

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

Installing numpy package

Upgrade pip

10
Arun Babu