Search
Update Anaconda Installation
Do This
By updating the Anaconda distribution directly, it is easier to manage multiple computers because the package collection is the same.
- Go to Anaconda prompt (run as admin)
- Check Anaconda version:
conda list anaconda$
- Update Anaconda:
conda update anaconda
- Check Anaconda version, if there was a newer version, you should see the new version number here:
conda list anaconda$
Or, Alternativey
It is also possible to update all packages manually. The conda
manager will make sure they are compatible with each other.
- Update conda:
conda update -n root conda
- Update all Anaconda packages:
conda update --all
- Check conda version:
conda --version
- Check list of installed packages:
conda list
- Check Anaconda version, since we did a manual update of all packages, this will most likely show
custom
as version number:
conda list anaconda$
Or, Alternatively
Deinstall current installation and reinstall from the official page here.