无法从命令提示符打开python程序

时间:2011-12-19 16:36:31

标签: python windows-7 cmd command-prompt

当尝试从命令提示符运行.py文件时,我得到了这个,

C:\users\ocean>python helloworld.py
python: can't open file 'helloworld.py': [Errno 2] No such file or directory

环境变量已设置为; C \ python27和; C \ python32(是的,我正在运行python的两个版本。)

我必须设置一个新变量吗?我必须做什么?运行Windows 7,在“python”甚至无法识别之前,让它甚至运行该错误是一件痛苦的事。

编辑:C:\ users \ oceans不包含我的python文件夹。有没有反正重定向目录,以便我不必将所有的python文件移动到海洋?

1 个答案:

答案 0 :(得分:2)

您必须这样做:

python c:\path\to\the\file.py

cd c:\path\to\the
python file.py