Skip to content Skip to sidebar Skip to footer

Upgrade Pip To Ver18 On Anaconda

I am using anaconda 64-bit for python v3.6 on Windows 10. Whenever I use pip on anaconda, I get the following message; You are using pip version 10.0.1, however version 18.0 is ava

Solution 1:

I will answer my own question. I got the answer thanks to one of the comments from abarnert who suggested conda-forge.

Run the commands below;

conda config--add channels conda-forge 
conda update pip

Solution 2:

A bit different here but I'm using Linux.

Even though I had conda-forge in my channel list, I still couldn't just run conda update pip to update. I had to run the following to install that specific version.

conda install pip=18.0

Solution 3:

Enter the following command:

python.exe -m pip install --upgrade pip

Solution 4:

Small update:

Anaconda has recently distributed pip 18.1 version.

Both via Anaconda Prompt or via Anaconda Navigator, you should be able to upgrade pip and its dependencies (libcur, pycurl, qt, so on and so forth).

Solution 5:

Simple pip upgrade command worked for me

pip install --upgrade pip

Let me know if that doesn't work for you.

Post a Comment for "Upgrade Pip To Ver18 On Anaconda"