Conda Delete Environment By Path Code Example
Example 1: conda remove environment
conda remove --name myenv --allExample 2: conda list environments
conda info --envsExample 3: how to see all the environments in Conda
conda env listExample 4: remove a conda environment
conda env remove --name <name> --all
Comments
Post a Comment