Windows 10 conda not recognized as an internal or external command

Tried

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

but with

conda is not recognized as an internal or external command

,

C:\Users\user_name\Anaconda3\Scripts

was installed for Path

in environment variables

under user

and System variables

.

I have installed Python 3.5

and it is on Path

, I am using Win10 X64

.

How do I fix the problem?

+5


source to share


3 answers


There is a similar question asked here before, check it out maybe it will help you.



To verify that the package conda installed correctly, make sure that Anaconda3 \ Scripts folder contains files conda package, that is, conda

conda-env

conda-env-script

conda-script

conda-server

conda-server-script

etc.

+1


source


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 enter the following commands at your anaconda prompt

enter image description here



Then you can add Python and Conda to your path using the setx command on the command line. enter image description here

Then close that command line and open a new one. Congratulations, you can now use conda and python

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

+3


source


Just check both when installing Anaconda.

( https://i.stack.imgur.com/WogNs.jpg )

-1


source







All Articles