我已在本地机器(Windows 7)中按照http://docs.python.org/tutorial/interpreter.html中的说明安装了pyton 2.7.3,并尝试使用cmd提示符设置路径。
set path =%path%; C:\ python27
但是当我在命令行中键入 python 时,显示错误
Traceback (most recent call last): File"<stdin>",line 1, in <module>
Nameerror:name 'python' is not defined
我还尝试手动添加路径
Start Menu > Control Panel > System & Security > System > Advanced System Settings/
Under System variables-path->edit and added this code ;C:\python27
但是当我在命令行中键入 python 时,我得到了相同的错误
我该怎么办?
答案 0 :(得分:2)
你必须做第二部分,在python解释器本身执行python
命令。