Home >Backend Development >Python Tutorial >How to view the environment with conda
Conda view environment method: 1. Open Anaconda Prompt, enter the "conda info --envs" command in the command line window, press the Enter key to execute the command, and you can see the currently existing conda environment. List; 2. You can also use the Anaconda Navigator software to view the conda environment. Find the "Environments" tab on the main interface to view the list of all conda environments.
The operating system for this tutorial: Windows 10 system, Python version 3.11.4, Dell G3 computer.
1. To use conda to view the environment, you can follow the following steps:
Open Anaconda Prompt and enter the "conda info --envs" command in the command line window.
After pressing the Enter key to execute the command, you can see the list of currently existing conda environments.
In the environment list, you can view information such as the name, path, and Python version used of each environment.
2. In addition, you can also use Anaconda Navigator software to view the conda environment. Find the "Environments" tab on the main interface to view a list of all conda environments.
The above is the detailed content of How to view the environment with conda. For more information, please follow other related articles on the PHP Chinese website!