Cannot upgrade pip 9.0.1 to 9.0.3 - requirement already satisfied

心已入冬 提交于 2019-12-02 17:30:48

Recently, Python.org sites stopped supporting TLS version 1.0 and 1.1, which could be causing the chicken-and-egg problem you are facing. Try upgrading pip without using pip:

curl https://bootstrap.pypa.io/get-pip.py | python
paul

These two commands worked for me:

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

then:

python get-pip.py

Try:
Right Click Anaconda Prompt (Run as Admin)

>> conda update pip

(It worked for me)

The curl answer above didn't work for me. This worked for me

sudo python -m pip install --upgrade pip
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!