Python virtualenv安裝庫報錯SSL: CERTIFICATE_VERIFY_FAILED

Python virtualenv安裝庫報錯SSL: CERTIFICATE_VERIFY_FAILED

問題描述

使用pip按照virtualenv報錯,以下:html

pip install virtualenv
Collecting virtualenv
/opt/python27/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:315: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#snimissingwarning.
  SNIMissingWarning
  Could not fetch URL https://pypi.python.org/simple/virtualenv/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) - skipping
  Could not find a version that satisfies the requirement virtualenv (from versions: )

解決辦法

使用–trusted-host命令行選項python

pip --trusted-host pypi.python.org install virtualenv

安裝其餘庫的時候只要出現相似錯誤 都可以使用此方法fetch

相關文章
相關標籤/搜索