What does conda update conda do?

Nobody likes waiting around for things to update, especially when it comes to something as important as your conda environment. So why does conda update take so long? And is there anything you can do to speed up the process? Here's what you need to know. If you've ever used the Conda package manager, you know that it's a huge time saver. But like any piece of software, it occasionally needs to be updated.

conda update package

on Jan 01, 1970
# Basic syntax:
conda update packagename # To update specific package in the current env
conda update --all # To update all packages in the current environment
conda update -n myenv --all # To update all packages in myenv environment

Add Comment

0

conda update

on Jan 01, 1970
conda update --all

Add Comment

0

How to update python using anaconda/conda

on Jan 01, 1970
# If want to update python type
conda update python

# To update anaconda type 
conda update anaconda

# a) If you want to upgrade between major python version like 3.5 to 3.6, you'll have to do
conda install python=$pythonversion$

# b) Method 2 - Create a new environment (Better Method)
conda create --name py36 python=3.6

# c) To get the absolute latest python(3.6.5 at time of writing)
conda create --name py365 python=3.6.5 --channel conda-forge

Add Comment

0

conda update conda

on Jan 01, 1970
conda update -n base -c defaults conda

Add Comment

0

For those who are unfamiliar with conda, it is an open source package management system that works on Windows, macOS, and Linux.

Shell/Bash answers related to "Conda update conda"

View All Shell/Bash queries

Shell/Bash queries related to "Conda update conda"

Browse Other Code Languages

CodeProZone