Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows 10 conda is not recognized as an internal or external command

Tried to

conda install -c conda-forge requests-futures=0.9.7

but failed with

conda is not recognized as an internal or external command,

C:\Users\user_name\Anaconda3\Scripts has been set for Path in environment variables under both user and System variables.

I installed Python 3.5 as well and it is on Path, I am using Win10 X64.

How to fix the issue?

like image 598
daiyue Avatar asked Jun 11 '17 20:06

daiyue


People also ask

Why Conda is not recognized in CMD?

Environment PATH for Conda is not set – This is the most common cause why this issue occurs. Keep in mind that the latest Anaconda builds will not automatically add Conda to your System variable paths since it can cause various issues with other software.


1 Answers

When you install anaconda on windows now, it doesn't automatically add Python or Conda to your path.

If you don’t know where your conda and/or python is, you type the following commands into your anaconda prompt

enter image description here

Next, you can add Python and Conda to your path by using the setx command in your command prompt. enter image description here

Next close that command prompt and open a new one. Congrats you can now use conda and python

Source: https://medium.com/@GalarnykMichael/install-python-on-windows-anaconda-c63c7c3d1444

like image 167
Michael James Kali Galarnyk Avatar answered Sep 20 '22 08:09

Michael James Kali Galarnyk