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: 
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
conda update package-name
conda update package-name
conda update package-name
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
conda update --all
conda update --all
conda update --all
  • Update all packages in the current environment: 
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
conda update -n myenv --all
conda update -n myenv --all
conda update -n myenv --all
  • 4. Update Python: 
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
conda update python
conda update python
conda update python

5. Update conda itself: 

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
conda update conda
conda update conda
conda update conda