Deleting Anaconda Environment#
First, open the terminal. If you are already in an environment, type conda deactivate
to exit the environment. Then, type conda env list
to view the list of environments.
Deleting the Environment#
Enter the following command:
conda remove -n name_of_environment --all
Some conda versions use the command:
conda env remove -n name_of_environment --all
Choose the appropriate command based on your situation. In my case, I used the first command.
Deletion complete. You can see that the "PDFqsy" environment is no longer present.