Apologies if this is a poor place to ask ... A while ago I used anaconda to install a python environment for a particular program I was using. Then I stopped using it, and I've subsequently rebooted the system. I now want to re-run the same program but I can't figure out how to reactivate the same python environment to run it in. I stupidly apear to have taken no notes at the time :( Can anybody point me to a better place to ask, or to an online resource that explains (for a simple idiot) how to reactivate an environment using conda or whatever?
On 4/13/24 05:30, Dave Howorth wrote:
Apologies if this is a poor place to ask ...
A while ago I used anaconda to install a python environment for a particular program I was using. Then I stopped using it, and I've subsequently rebooted the system.
I now want to re-run the same program but I can't figure out how to reactivate the same python environment to run it in. I stupidly apear to have taken no notes at the time :(
Can anybody point me to a better place to ask, or to an online resource that explains (for a simple idiot) how to reactivate an environment using conda or whatever?
Anaconda is installed by default in your home directory, probably in ~/anaconda3, so that it doesn't interfere with the system's python. You can turn it on by executing: conda activate base It can be turned off by: conda deactivate Regards, Lew
participants (2)
-
Dave Howorth
-
Lew Wolfgang