I would like to delete an Anaconda environment. From this reference, it looks like I could use
conda remove --name myenv --all
or
conda env remove --name myenv
The documentation mentions both, but does not explain the difference.
How might I determine what the --all flag does?