Python构建的系统根本不工作。问题是什么?

Python构建的系统根本不工作。问题是什么?,python,sublimetext2,Python,Sublimetext2,在编辑默认构建系统本身并创建新的构建系统之后,我不断遇到这个错误 [Error 2] The system cannot find the file specified [cmd: [u'C:\\python32\\python', u'-u', u'C:\\Users\\Ishmael\\Desktop\\projectone.py']] [dir: C:\Users\Ishmael\Desktop] [path: C:\Program Files (x86)\Intel\iCLS Cli

在编辑默认构建系统本身并创建新的构建系统之后,我不断遇到这个错误

[Error 2] The system cannot find the file specified
[cmd:  [u'C:\\python32\\python', u'-u', u'C:\\Users\\Ishmael\\Desktop\\projectone.py']]
[dir:  C:\Users\Ishmael\Desktop]
[path: C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Sony\VAIO Improvement\;C:\Program Files (x86)\Sony\VAIO Startup Setting Tool]
[Finished]
在“cmd”中:“我正在完成重新构建,但它会将过去的构建保存到自身中。(在我显然覆盖它之后)请帮助,因为我只想在Sublime Text 2中构建。运行Windows 8

更新:忘记了主要部分,代码。这就是我当前的python.sublime-build

{
   "cmd": ["C:\\python32\\python", "-u", "$file"],
   "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
   "selector": "source.python"
}
你明白我所说的在旧的“c/users/ishmael/etc”上不断添加的意思了吗?wtf.

请尝试确保使用解释器的完整路径名指定cmd,包括扩展名
.exe


(假设您的Python解释器真的位于
c:\python32

@vegies,那么您仍然缺少.exe。
c:\\python32\\python.exe