How to modify the env name created by conda on the cloud server

I want to modify the name of the virtual environment, which can be done with the following command:

conda create --name new_name --clone old_name

Where new_name is the new name you want to modify, and old_name is the original env name.

If the original "old_name" environment is not needed, it can be removed with the following command:

conda remove --name old_name --all

Guess you like

Origin blog.csdn.net/qq_45257495/article/details/131100288