Skip to content Skip to sidebar Skip to footer

Anaconda Environment Won't Activate

I'm on Windows 7 using Anaconda 4.7.10. On a command prompt after I entered Python I saw this: This Python interpreter is in a conda environment, but the environment has not been

Solution 1:

Your step 4 already confirms that you were able to activate the base environment.

(base) C:\Users\Linda>

When an environment is activated, the default directory is "C:\Users\your-account".

I would however, suggest you to use Anaconda Prompt instead of regular CMD.

If you want to use CMD, first activate the environment C:\Users\your-account>activate base and then enable python interactive interface (base) C:\Users\your-account>python


Post a Comment for "Anaconda Environment Won't Activate"