user3848207
user3848207

Reputation: 4917

Is "conda update --all" good enough to upgrade to latest anaconda version?

The latest anaconda version is 2020.11.

I am using anaconda python 2020.7. Will conda update --all be good enough to upgrade my existing version to 2020.11? Are there things that I am missing out if I don't install 2020.11 directly from installation file?

Upvotes: 5

Views: 15977

Answers (3)

guagay_wk
guagay_wk

Reputation: 28030

From conda website, you can use conda command to upgrade to latest v2020.11 as of 24Jan2021. https://www.anaconda.com/blog/individual-edition-2020-11

You can find the full release notes for Anaconda Individual Edition 2020.11 here.

Update to Anaconda 2020.11 now with conda install anaconda=2020.11, or download and install Anaconda 2020.11.

So, the right command to run is conda install anaconda=2020.11

Upvotes: -1

Ammar
Ammar

Reputation: 85

You can easily update Anaconda to the latest version.

Enter these commands:

conda update conda

conda update anaconda=VersionNumber

Upvotes: 5

Shrivardhana
Shrivardhana

Reputation: 203

The conda update --all works to update the anaconda package management system, you can also use the conda update anaconda=VersionNumber. For more detailed info check this website
https://docs.anaconda.com/anaconda/install/update-version/

Upvotes: 12

Related Questions