Home > Article > Backend Development > What are the conda commands?
Conda commands include creation environment, management environment, management package, management package environment and other types of commands. Detailed introduction: 1. Create an environment: create a new environment: conda create --name environment name; create an environment from an environment file: conda env create -f environment file.yml; 2. Manage the environment: activate the environment: conda activate environment name ;Exit the environment: conda deactivate;Exit the environment, etc.
The operating system for this tutorial: Windows 10 system, Python version 3.11.4, Dell G3 computer.
conda is an open source tool for package management and environment management. It provides a series of commands to manage Python packages and environments. The following are some commonly used conda commands:
1. Create an environment:
Create a new environment: conda create --name environment name
Create an environment from an environment file: conda env create -f environment file.yml
2. Management environment:
Activate environment: conda activate environment name
Exit environment: conda deactivate
List all environments: conda env list
Delete environment: conda env remove --name environment name
3. Management package:
Installation package: conda install package name
Install a specific version of the package: conda install package name = version number
Upgrade package: conda update package name
Uninstall the package: conda remove package name
Search package: conda search package name
4. Management package environment:
Export environment to file: conda env export > environment file.yml
From environment File creation environment: conda env create -f environment file.yml
Clone environment: conda create --clone source environment name --name new environment name
5. Other commonly used commands:
Display the installed package list: conda list
Display package details: conda info package name
Display conda version information: conda --version
Display conda help information: conda --help
These are just some commonly used conda commands, there are more commands and options available. You can view the complete help document through the conda --help command to learn more about conda commands and usage.
The above is the detailed content of What are the conda commands?. For more information, please follow other related articles on the PHP Chinese website!