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?
Selon la documentation de Paramiko installation :
Versions prises en charge:
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
L'utilisation des commandes suivantes m'a aidé. veuillez essayer ceci
python -m pip install --trusted-Host pypi.python.org --trusted-Host files.pythonhosted.org --trusted-Host pypi.org --upgrade pip
python -m pip install PACKAGE NAME --trusted-Host pypi.python.org --trusted-Host files.pythonhosted.org --trusted-Host pypi.org