Python cd 后无法识别
Python is not recognized after cd
我正在使用 Windows 8 64 位。我安装了 Python,看到 Windows Path
被两个路径追加:C:\Python27\Scripts; C:\Python27;
所以当我 运行 cmd
并输入 python
时,我收到错误
'python' is not recognized as an internal or external command,
operable program or batch file.
我也试过py
,同样的错误。
我目前正在使用 here 提出的解决方案,所以我正在输入
C:\Python27\python.exe manage.py runserver
例如。但这不是我想要的。我怎样才能让它与命令 python
?
一起工作
提前致谢。
PATH
值中的分号后不应有 space。
我正在使用 Windows 8 64 位。我安装了 Python,看到 Windows Path
被两个路径追加:C:\Python27\Scripts; C:\Python27;
所以当我 运行 cmd
并输入 python
时,我收到错误
'python' is not recognized as an internal or external command, operable program or batch file.
我也试过py
,同样的错误。
我目前正在使用 here 提出的解决方案,所以我正在输入
C:\Python27\python.exe manage.py runserver
例如。但这不是我想要的。我怎样才能让它与命令 python
?
提前致谢。
PATH
值中的分号后不应有 space。