Conda is an open-source package and environment management system. It is primarily used to install multiple versions of software packages and their dependencies so that you can easily switch between them. Conda is frequently used to conveniently install Python.
Conda is available for:
The following are some commonly used conda install
commands:
conda install PACKAGE_NAME
conda remove --name ENVIRONMENT_NAME PACKAGE_NAME
conda update --name ENVIRONMENT_NAME PACKAGE_NAME
conda list --name ENVIRONMENT_NAME
conda install python=x.x
conda install pip
For more details, refer to the official documentation.
Free Resources