How do I revert to a previous package in Anaconda?

chrisaycock picture chrisaycock · May 31, 2014 · Viewed 133.3k times · Source

If I do

conda info pandas

I can see all of the packages available.

I updated my pandas to the latest this morning, but I need to revert to a prior version now. I tried

conda update pandas 0.13.1

but that didn't work. How do I specify which version to use?

Answer

chrisaycock picture chrisaycock · May 31, 2014

I had to use the install function instead:

conda install pandas=0.13.1