Reputation: 305
Whenever I open the Anaconda Prompt, I get the message above printed twice
How can I resolve this?
Upvotes: 13
Views: 48621
Reputation: 31
You need to go to the file location of the Anaconda Prompt (Figure 1), go to "Properties" of the Prompt (Figure 2) and change the links in "target" to the correct link to miniconda (in my case, the correct links are: "%windir%\System32\cmd.exe" /K ""C:\Program Files\miniconda3\Scripts\activate.bat" "C:\Program Files\miniconda3"")
(1) enter image description here (2) enter image description here
Upvotes: 3
Reputation: 77
Install anaconda with specified user not public. This option create the directed folder within the user name so just copy the directory into system - advanced - path and edit variables.
Upvotes: 0
Reputation: 425
try executing conda init
and restart the anaconda prompt. It should initialize the conda environment again.
Upvotes: 24
Reputation: 1009
Go to Control Panel\System and Security\System\Advanced System Settings
then look for Environment Variables.
Your user variables should contain Path=Path\to\Anaconda3\Scripts
.
You need to figure where your Anaconda3 folder is (i.e. the path to this folder). Mine was in C:\Users\(User Name) \Anaconda3
.
Upvotes: 5