Submitting the form below will ensure a prompt response from us.
Before removing an environment, check the available environments using:
sh
conda env list
or
sh
conda info --envs
This will display all environments. Find the name of the one you want to delete.
Run the following command, replacing <env_name> with your environment’s name:
sh
conda remove --name --all
Example:
sh
conda remove --name myenv --all
The –all flag ensures that all dependencies and files related to the environment are deleted.
Run:
sh
conda env list
The removed environment should no longer appear in the list.
If conda remove –name <env_name> –all doesn’t work, you can manually delete the environment folder:
Submitting the form below will ensure a prompt response from us.