[ 已解決] pytest 安裝失敗 SSL 證書
1、pip install pytest
2、pip easy_install pytest
3、pycharm 工具下安裝失敗。。。。。。。。。。。。。。。。。。。。。。。。。。。。、、
4、pip install -U pytest
我回過頭自己看便宜charm 報的錯,
Collecting pytest
Could not fetch URL https://pypi.python.org/simple/pytest/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:720) - skipping
Could not find a version that satisfies the requirement pytest (from versions: )
No matching distribution found for pytest
證書版本過期了,
出現這個錯誤的原因是python.org
已經不支援TLSv1.0
和TLSv1.1
了。更新pip
可以解決這個問題。但是如果使用傳統的python -m pip install --upgrade pip
的方式,還是會出現那個問題。這是一個雞和蛋的問題,你因為TLS
證書的問題需要去升級pip
,升pip
的時候又因為TLS
證書的原因不能下載最新版本的pip
pip
。
mac
或者linux
作業系統:在終端下執行命令:curl https://bootstrap.pypa.io/get-pip.py | python
。windows
作業系統:從https://bootstrap.pypa.io/get-pip.py
下載get-pip.py
檔案,然後使用python
執行這個檔案python get-pip.py
即可。
這個方法我也試了無效。。。
總之。網上找的方法我都用了。
最後用了這個
pip install pytest -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
上面都是我走過的彎路,,,,希望你們不要走,