Ubuntu 16.04下指定Sublime Text 3 默认python编译版本
程序员文章站
2022-05-30 18:45:55
...
安装PackageResourceViewer插件
输入Ctrl+Shift+P
输入install
,选择Package Control: Install Package
选择PackageResourceViewer
,安装
设置默认的 Python.sublime-build
输入Ctrl+Shift+P
输入resource
,选择PackageResourceViewer:Open Resource
再选择Python
,再再选择Python.sublime-build
编辑
Python.sublime-build
将"shell_cmd": "python -u \"$file\"",
改为以下之一:
"shell_cmd": "python3 -u \"$file\"", //指定python3为.py默认编译器
"shell_cmd": "python2 -u \"$file\"", //指定python2为.py默认编译器
"shell_cmd": "python -u \"$file\"", //根据Ubuntu系统设置,看/usr/bin/python链接哪儿(ln)
"shell_cmd": "指定版本python的绝对路径 -u \"$file\"", //指定路径下的python编译器
使用python3的配置文件示例(Python.sublime-build)下面是配置的主要的代码,
{
//"shell_cmd": "python -u \"$file\"",
"shell_cmd": "python3 -u \"$file\"", //指定python3为.py默认编译器
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf-8"},
"variants":
[
{
"name": "Syntax Check",
"shell_cmd": "python -m py_compile \"${file}\"",
}
]
}
Ctrl+S 保存配置文件
注:有关.sublime-build
的配置信息说明,可见参见这儿
重启Sublime Text 3
打开.py文件,Ctrl + B 即可编译执行
配置好之后的截图如下所示,
然后保存,新建一个testPython3来验证下是否安装成功,代码和显示结果如下:
出现的问题主要是因为在Python2和Python3下print输出函数的问题,Python3下输出需要加括号(),若是不加则出现上述的问题;按要求更改之后的代码和结果如下所示:
与其他方法的使用比较
网上也有其他变通方法,可以参考下面链接:
ubuntu下sublime text 3加入python3环境支持指定ubuntu下的Python的运行版本
存在问题:小细节:
首次配置好Python的时候,会提示你如下选项:
Python3
Python3-Syntax Check
我们选择的是Python3,该两个选项卡亚通过Sublime Text3 中Tools下拉菜单的Build with中找到