Sublime Text:"系统找不到指定的文件"错误

时间:2015-09-15 15:05:45

标签: python sublimetext3 sublimetext

首先,我知道这个问题已被问过很多次,但是我通过阅读其他答案找不到问题的答案。

我正在使用Sublime Text 3,但根本无法理解构建系统!

我有最简单的Python文件只包含df_do

我的构建文件并不复杂,因为它是:

print 'test'

然而,当我试图运行它时,我得到:

{
    "selector": "source.python",
    "cmd": ["echo test"],
}

根据我的理解,这个错误主要是因为[WinError 2] The system cannot find the file specified [cmd: ['echo test']] [dir: C:\P4\depot\test] [path: C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\CCM;C:\Python27\;C:\Python27\Scripts] [Finished] 问题而发生,但我认为在我调用系统命令时它不会成​​为问题。

那么,你知道如何解决它吗?

谢谢:)

1 个答案:

答案 0 :(得分:2)

对于那些感兴趣的人,答案只是改变:

"cmd": ["echo test"]

"shell_cmd": "echo test"

再次,我的问题与Python本身无关,但更多的是在Sublime Text中构建系统,我发现这些系统的文档记录很差。