Hi,
It sounds like the path variable is not set up correctly (so Windows doesn't know where to look for the conda script). Usually this should be done automatically when downloading Anaconda from
https://www.anaconda.com/download and running the .exe file.
But, you can set the path variable yourself. By default, Anaconda installs to C:\Anaconda3, and the conda script lives in C:\Anaconda3\Scripts. Therefore you need to add C:\Anaconda3 as well as C:\Anaconda3\Scripts to your path variable.
There are two ways you can do this:
- From the command prompt, type:
set PATH=%PATH%;C:\Anaconda3;C:\Anaconda3\Scripts\
(But you'll have to do this every time you open up a new command prompt) - Hit the windows key -> enter environment -> choose from settings -> edit environment variables for your account -> select Path variable -> Edit -> New. Then type in C:\Anaconda3, and repeat for C:\Anaconda3\Scripts.
Let me know if that doesn't work.
Best,
Michael