get list of packages installed in Anaconda

Regi Mathew picture Regi Mathew · Sep 23, 2017 · Viewed 143.5k times · Source

Over a period of time I have loaded a number of packages into the Anaconda I have been using. Now I am not able to keep track of it. How do we get a list of all packages loaded in Anaconda (windows10)? What is the command?

Answer

Reblochon Masque picture Reblochon Masque · Sep 23, 2017

in terminal, type : conda list to obtain the packages installed using conda.

for the packages that pip recognizes, type : pip list

There may be some overlap of these lists as pip may recognize packages installed by conda (but maybe not the other way around, IDK).

There is a useful source here, including how to update or upgrade packages..