Sublime Text 2 不能编译 Python 3.4.2


Sublime Text 2 不能编译 Python 3.4.2
Ctrl+B 之后 编译框没反应.
Ctrl+` 之后是这样:


 Running 
Traceback (most recent call last):
  File ".\sublime_plugin.py", line 337, in run_
  File ".\exec.py", line 154, in run
TypeError: __init__() got an unexpected keyword argument 'shell_cmd'

请问各位,这该怎么解决?

编译 python3.x python sublime-text

just* 11 years, 3 months ago

应该是混用了 Sublime Text 2 和 Sublime Text 3 的 build 文件。“ shell_cmd ”是 Sublime Text 3 才开始有的关键字。

一小撮火花 answered 12 years ago

我的解决办法是换 Sublime Text 3!

金麟岂是池中物 answered 12 years ago

我的配置是将Python.sublime-build修改为:


 {
    "cmd": ["python", "-u", "$file"],
    "path": "C:/Python34",
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python"
}

加入Python3的路径应该就可以了,具体的可以参考 我的配置过程

一幽容翼一 answered 12 years ago

Your Answer