当尝试从命令提示符运行.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文件移动到海洋?
答案 0 :(得分:2)
您必须这样做:
python c:\path\to\the\file.py
或
cd c:\path\to\the
python file.py