Reputation: 11
Hello guys I need your help, what happens is that I update w10 (although I did not want to), the problem is that when I enter Anaconda Prompt I get 2 messages:
The system can not find the path specified.
The system can not find the path specified.
I already tried what is here. But it still doesn't work, the funny thing is that Anaconda PowerShell Prompt appeared and everything runs normal here.
Upvotes: 1
Views: 2173
Reputation: 183
You can see all of your environments (including base env) with
conda info --envs
The paths displayed must be in your environment variables, which may have been altered with the windows update. I'd compare PATH in these environment variables and see if the output above is in there. If not, manually adding it should solve the issue.
Upvotes: 1