Soundtemple
Soundtemple

Reputation: 711

Cannot upgrade pip 9.0.1 to 9.0.3 - requirement already satisfied

I'm trying to update pip using pip install --upgrade pip, but I get a "requirement satisfied" error and an "outdated version" message at the same time

$ pip install --upgrade pip
Requirement already up-to-date: pip in 
/Users/user/Envs/proj/lib/python2.7/site-packages
You are using pip version 9.0.1, however version 9.0.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' 
command.

How do I update?

Upvotes: 34

Views: 111188

Answers (6)

Asma
Asma

Reputation: 189

Apparently the issue is with Anaconda. This solution worked for me: https://github.com/conda/conda/issues/9746#issuecomment-616314792

Upvotes: 0

alpoza
alpoza

Reputation: 460

This worked for me in windows with Anaconda3: Add **\Anaconda3\Library\bin to windows path

set path=anaconda_install_path\Anaconda3\Library\bin to windows path;%path%

Upvotes: 1

paul
paul

Reputation: 135

These two commands worked for me:

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

then:

python get-pip.py

Upvotes: 11

swb
swb

Reputation: 29

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

sudo python -m pip install --upgrade pip

Upvotes: 2

OM Bharatiya
OM Bharatiya

Reputation: 2140

Try:
Right Click Anaconda Prompt (Run as Admin)

>> conda update pip

(It worked for me)

Upvotes: 4

Anupam
Anupam

Reputation: 15620

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

Upvotes: 127

Related Questions