Anaconda Delete Environment#
First, open the terminal. If you are already in an environment, enter conda deactivate
to exit the environment, then enter conda env list
to view the environment list.
Delete Environment#
Enter the command
conda remove -n name_of_environment --all
Some conda users may use the command
conda env remove -n name_of_environment --all
Choose the appropriate command based on your actual situation. In my case, I use the first command.
Deletion is complete. You can see that the environment named "PDFqsy" no longer exists.