在Google上找到了这个。
创建文件
~/.config/sublime-text-2/Packages/Python/Python3.sublime-build:
{ "cmd": ["python3", "-u", "$file"], "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)", "selector": "source.python"}然后,您应该能够选择Python3构建系统。
如果这样不起作用,请尝试以下操作:
{ "cmd": ["python3", "-u", "$file"], "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)", "selector": "source.python", "encoding": "utf8", "path": "/Library/frameworks/Python.framework/Versions/3.3/bin/"}


