Question
How do I remove or delete a virtual conda environment from the Command Line?
Answer
1. From the Anaconda Prompt or Terminal command line (CLI) in the base environment, enter "conda info --envs" to list the current environments. The example environment to remove is highlighted.
Example environment: my_test_env_3_13

2. Remove (delete) the example environment.
Example environment: my_test_env_3_13
a. Enter "conda remove --name <environment_name> --all". Removal process begins...

b. First prompt to proceed, enter "y".

c. Second prompt to continue, enter "y".

3. Enter "conda info --envs" to list the environments. The example environment was removed.
