I recently attempted to rename a Conda environment from ML to ML2 using a command
conda rename -n ML ML2
After renaming, I tried to activate the new environment and run Jupyter Notebook:
However, I encountered the following error:
Fatal error in launcher: Unable to create process using ‘ML/python.exe’
It seems that Jupyter is still looking for the Python executable in the old environment path. I’ve checked that the ML2 environment is activated correctly, but the issue persists.
Could anyone offer guidance on how to correctly update the internal paths of a renamed Conda environment, or provide a workaround for this issue?