Pips update does not work

I am attached. However, when I run the pipud update pip command, Conda continues to tell me about the update. My exact terminal output is below:

Anton-MacBook-Pro:~ anton$ conda update pip -p /Users/anton/anaconda/envs/py3k # All packages already at latest version, nothing to do. # packages in environment at /Users/anton/anaconda/envs/py3k: # # Warning: Your version of pip is older than what conda requires for pip # integration, so pip-installed packages will not be displayed. Please # update pip, (conda update pip -p /Users/anton/anaconda/envs/py3k) pip 1.4.1 py33_1 Anton-MacBook-Pro:~ anton$ 

My interpretation of terminal output:

  • I'm telling conde to upgrade pip.
  • Konda says the pip is updated, then
  • Conda warns me that pip is not updated and that I have to run the exact code that I just executed in step 1.
+8
python pip conda anaconda
source share
2 answers

This is a conda mistake, as Yakov Budin noted. Try to run

 conda update distribute 

and see if the problem fixes. In any case, you do not need to worry about it.

+2
source share

At the time of this writing, pip v1.4.1 is the latest stable release . The warning you encounter is a known bug in the cond ( pydata / conda # 429 ).

Check if running ./python ./pip list in the bin/ directory of your conda environment (i.e. using local Python and pip scripts) displays the expected result (i.e. a list of installed packages without error); if not, then on which he hung up.

I would add your experience to the GitHub error stream.

+1
source share

All Articles