Windows: Anaconda 'python' is not recognized as an internal or external command on CMD

随声附和 提交于 2019-12-05 09:31:52
EmperorBale

You probably haven't added it to your environment variables, here how you do it:

  1. Go to "Edit the system environment variables" inside of control panel (you can search for it to using the search thing).

  2. Once you are there make sure you are in the advanced section.

  3. Click "Environment variables". In the section that says "System variables" search for something named "Path".

  4. If path is not there, simply create it by clicking "New" in the part that says system variables.

  5. Once you got that done, select "Path" and click edit, now find the path that you installed Anaconda in (i.e C:\Users\ftake\Anaconda3) and add it to the "Path".

  6. Once you got that done try using the python command again and it should work.

If I was unclear about something, you can follow this as well: https://www.java.com/en/download/help/path.xml

I know it's for java but it works the exact same way for python.

EDIT: Also for pip it's literally the same thing just add \Scripts to the end of the path

I just spent 30 minutes on this, so I'll provide a much more detailed answer than the above...

1) Open "My Computer" 2) Right Click "This PC" 3) Select "Properties"

4) Select "Advanced System Settings"

5) Select "Environment Variables" 6) Under "System Variables", highlight "Path" row 7) Select "Edit" 8) Select "Browse" 9) Navigate to Anaconda Path (Python should be there; check for python.exe at that location)

10) Restart your cmd.exe; everything should work.

once and for all clarification when you get this python or pip is not recognised error in windows command prompt happens often when multiple IDE installations

Go to environmental variables then to system variables where you change or add this

sometimes your anaconda3 path maybe in allusers if you install it as administator so go through the C drive to get that

example C:\Users\All Users\anaconda3

If not try py -m pip install yourpackage

If you didn't check the Add Anaconda to the Windows PATH during installation, you can do it manually by adding the following paths to your path-variable:

  • C:\<path_to_anaconda_directory>\anaconda3
  • C:\<path_to_anaconda_directory>\anaconda3\Library\mingw-w64\bin
  • C:\<path_to_anaconda_directory>\anaconda3\Library\usr\bin
  • C:\<path_to_anaconda_directory>\anaconda3\Library\bin
  • C:\<path_to_anaconda_directory>\anaconda3\Scripts

The standard path (if you didn't specify anything else in the installation) is C:\Users\<your_user_name>\AppData\Local\Continuum\anaconda3

Even i faced the same problem because of python path was not added in environment variable ,follow below steps :

  1. Go to Anaconda prompt type : where python

    say it is C:\ProgramFiles\Anaconda3\python.exe

  2. Open "Advanced system setting" from main menu. In environment variable,edit path and add path : C:\ProgramFiles\Anaconda3

  3. Now in command prompt you see by typing : python --version

& the error "python' is not recognized as an internal or external command on CMD" will also go off.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!