anaconda - path environment variable in windows

前端 未结 11 1037
迷失自我
迷失自我 2020-12-08 02:23

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



        
11条回答
  •  抹茶落季
    2020-12-08 02:42

    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
    

提交回复
热议问题