Anaconda | Getting Started

Updating packages

To check if any new update is available you can use conda update. If any update is available you can choose whether to install or not to install it.

You can use an Anaconda prompt or the terminal for the following steps: 

  • Update specific package: 
conda update package-name
conda update --all
  • Update all packages in the current environment: 
conda update -n myenv --all
  • 4. Update Python: 
conda update python

5. Update conda itself: 

conda update conda