What is proper way to update Anaconda Environment?
Do you want to update to a newer anaconda distribution? In that case (if you have the anaconda
package installed):
conda update anaconda
Do you want to update all packages to the latest version:
conda update --all
The second option may lead to long solution times in case you have the anaconda
package installed (see conda list
for this). But if you have created the environment by hand, you should be able to use the second solution.
1 Like