Conda cheat sheet
Here are the more common conda commands that you'll find yourself using quite often, along with some extra ones that will prove to be handy by way of a quick reference.
Conda general commands
The general commands are as follows:
conda install <package>
: Searches for and installs the specified package from your channelsconda info
: Shows the basic information about condaconda config --add channels conda-forge
: Adds a channel for searching for packagesconda update –all
: Updates all packages that it canconda search <package>
: Searches the appropriate channel-specific packageconda create –-name <environment_name> python=<python version>
: Creates a new conda environment and installs the specified Python versionconda activate <environment_name>
: Activates the specified conda environment that allows you to use it
Conda environment commands
The environment-specific commands...