Here is a little trick to rename an Anaconda environment.
Anaconda does not officially support renaming, but if you don’t mind temporarily wasting a bit of disk space, you can easily rename this way.
1 2 |
conda create --name new_name --clone old_name conda remove --name old_name --all |