在Sublime Text3 中新建Python3的编译系统
1. 查看Python3的位置
which python3
>>/usr/bin/python3
2. 新建编译系统
Sublime Text3 菜单中选择 工具--编译系统--(最下边)新建编译系统
在弹出的新文件里输入
{ "cmd": ["/usr/bin/python3", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.python" }
保存文件,将untitled更换为python3