我无法使用pip
安装任何新的Python包。 This question似乎解决了很多人的问题,但不是我。我跑的时候
curl https://bootstrap.pypa.io/get-pip.py | python
我得到了
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (35) error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
该问题的其他一些答案让我相信我需要将TLS更新到版本1.2,因为正在运行
python2 -c "import urllib2,json; print(json.loads(urllib2.urlopen('https://www.howsmyssl.com/a/check').read())['tls_version'])"
返回TLS 1.0
但我无法弄清楚如何去做。我目前正在使用:
有什么想法吗?