我想在Sublime Text 2中设置一个完整的Python IDE。我发现Stack Overflow上的以下线程看起来很有帮助:
How do I run Python code from Sublime Text 2?
Running python in Sublime Text 2 getting error
问题
但我按照这些步骤仍然没有为我工作。我调用了我的文件Test2并将其保存到我的Downloads文件夹中。然后我输入了一行简单的代码
print 'test'
并返回此错误
[Error 2] The system cannot find the file specified
[cmd: [u'python', u'-u', u'C:\\Users\\Stan Shunpike\\Downloads\\Test2.py']]
[dir: C:\Users\Stan Shunpike\Downloads]
[path: C:\ProgramData\Oracle\Java\javapath;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\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 (x86)\nodejs\;C:\Program Files (x86)\Elm Platform\0.14\bin;C:\Users\Stan Shunpike\AppData\Roaming\npm]
[Finished]
问题
为什么这不起作用,我可以采取哪些步骤来解决这个问题,以便我可以使用python进行编码?
注:
这些主题看起来很相关,但他们并没有具体讨论我的问题:
Sublime Text 2 Ant Build Target: [Error 2] The system cannot find the file specified
Can't resolve WindowsError: [Error 2] The system cannot find the file specified
注:
这个帖子看起来很有用
How to run code in Sublime text 2 python
但我不知道编辑" sublime build"意味着什么,特别是因为我还没有在Sublime中成功编写任何代码,它看起来就像线程在问我输入要执行的代码。
编辑1:
我已经修改了环境变量路径,但我没有重新启动Sublime。所以在MattDMo建议我这样做。当我重新启动它时,我得到了以下错误:
File "C:\Users\Stan Shunpike\Downloads\Test2.py", line 1
print "test"
^
SyntaxError: invalid syntax
[Finished in 0.1s with exit code 1]
答案 0 :(得分:6)
您的PATH
中没有Python可执行文件的路径,因此Sublime无法找到python
。将C:\Python27
(如果这是安装Python的地方)添加到PATH
环境变量中,然后重新启动Sublime并重试。