anaconda - path environment variable in windows

309,446

Solution 1

it turns out I was mistaken.

Solution is: in anaconda (as well as in other implementations), set the path environment variable to the directory where 'python.exe' is installed.

As a default, the python.exe file in anaconda is in:

c:\.....\anaconda

after you do that, obviously, the python command works, in my case, yielding the following.

python
Python 3.4.3 |Anaconda 2.2.0. (64|bit)|(default, Nov 7 2015), etc, etc

Solution 2

Instead of giving the path following way:

C:\Users\User_name\AppData\Local\Continuum\anaconda3\python.exe

Do this:

C:\Users\User_name\AppData\Local\Continuum\anaconda3\

Solution 3

The default location for python.exe should be here: c:\users\xxx\anaconda3 One solution to find where it is, is to open the Anaconda Prompt then execute:

> where python

This will return the absolute path of locations of python eg:

(base) C:\>where python
C:\Users\Chad\Anaconda3\python.exe
C:\ProgramData\Miniconda2\python.exe
C:\dev\Python27\python.exe
C:\dev\Python34\python.exe

Solution 4

C:\Users\\Anaconda3

I just added above path , to my path environment variables and it worked. Now, all we have to do is to move to the .py script location directory, open the cmd with that location and run to see the output.

Solution 5

C:\Users\<Username>\AppData\Local\Continuum\anaconda2

For me this was the default installation directory on Windows 7. Found it via Rusy's answer

Share:
309,446
Alejandro Simkievich
Author by

Alejandro Simkievich

Passionate entrepreneur. Love being at the intersection of business and technology. Interests include machine learning, artificial intelligence, natural language processing and computer vision.

Updated on November 05, 2020

Comments

  • Alejandro Simkievich
    Alejandro Simkievich over 3 years

    I am trying to run python from the windows command prompt (windows 10). So the result is the typical one when the path environment variable is not configured

     c:\windows\system32>python
    'python' is not recognized as an internal or external command, operable
     program or batch file
    

    however, I am not sure which is the right directory I should set up in the path variable.

    I tried a few variations, and none of them work, including:

    c:\users\xxx\anaconda3
    c:\users\xxx\anaconda3\Scripts
    c:\users\xxx\anaconda3\libs\python34
    

    and none of them works.

    Does anyone have experience with this particular system constellation (windows, anaconda). Thanks.