'Conda is not recognized as an internal or external command

Command line screen capture

I have successfully installed Anaconda on my drive D and added it to my path so that I am able to access it from cmd without using the Anaconda prompt.

However, after running where conda on the Anaconda prompt, I got the 3 different locations

- D:\Anaconda\Library\bin\conda.bat

- D:\Anaconda\Scripts\conda.exe

- D:\Anaconda\condabin\conda.bat

to set as paths but after doing that, the conda command on my command line still does not work.



Solution 1:[1]

From the error image and description of the issue, I can see that you have installed the anaconda in the D:\ drive and tried to access it through the C:\ drive.

To access the conda in command prompt, you need to run the below commands :

C:\Users\Loni Tande>cd D:\Anaconda\Scripts
D:\Anaconda\Scripts>conda
D:\Anaconda\Scripts>conda --version

Please make sure you have the latest Anaconda version installed in your system to access all its functionalities.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 TFer2