安装sublime text3后,按Ctrl+b无法运行python文件。
解决方法:
打开sublime -> tools -> build system ->new build system,在打开的新tab页面添加如下内容:
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
command +s保存到目录(Sublime Text3/Packages/User,保存时的默认目录),可任意命名(建议python3),但后缀名不能更改。
然后在tools→build system中选择添加的项,通过command +b命令即可运行Python文件。
网友评论