mac下python環境pip報錯[SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590) 的解決方法

1.mac下python環境pip報錯:python

issuserdeMacBook-Pro:~ issuser$ pip install pyinstaller
Collecting pyinstaller
  Could not fetch URL https://pypi.python.org/simple/pyinstaller/: There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590) - skipping
  Could not find a version that satisfies the requirement pyinstaller (from versions: )
No matching distribution found for pyinstaller

linux

2.出現這個錯誤的緣由是python.org已經不支持TLSv1.0和TLSv1.1了更新pip能夠解決這個問題。bootstrap

可是若是使用傳統的python -m pip install --upgrade pip的方式,仍是會出現那個問題。這是由於TLS證書的問題須要去升級pip,升pip的時候又由於TLS證書的緣由不能下載最新版本的pip。這時候就沒有辦法了,只能手動的去升級pip。windows

3.解決方式以下:
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便可。

curl

相關文章
相關標籤/搜索