Cmd to remove conda environment

I tried Anaconda Navigator For Windows to remove a conda environment, but it encountered multiple errors. How should I remove that environment via PowerShell? Thanks.

Hello,

You can remove the environment as follows:

conda deactivate

conda remove --name ENV_NAME --all

It is the same process in Powershell, as at a regular conda prompt.

1 Like