sublime text3 怎么配置、运行python_Sublime text 3 Python 运行配置

Sublime 菜单:Tools > Build System > New Build System…

编写以下内容:{

"cmd": ["/usr/local/bin/python3", "-u", "$file"],

"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",

"selector": "source.pythona",

"encoding": "utf-8" ,

"env": {"PYTHONIOENCODING": "utf8"}// 统一编码 utf8,避免中文乱码

}

其中 "/usr/local/bin/python3" 为我本机 python3 的安装位置,使用命令 `which python3` 可查看 Python 的安装位置。

在 windows 下应填写完整运行程序的路径名:{

"cmd": ["C:/Users/admin/AppData/Local/Programs/Python/Python38/python.exe", "-u", "$file"],

"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",

"selector": "source.pythona",

"encoding": "utf-8" ,

"env": {"PYTHONIOENCODING": "utf8"}// 统一编码 utf8,避免中文乱码

}

保存为 Python3.sublime-build 文件名

配置好后,就可以在 Sublime 菜单:Tools > Build System 中看到 Python3 的选项,选中这项,再使用 Sublime 菜单:Tools > Build 就可以直接运行当前编辑的 Python 脚本了。

你可能感兴趣的:(sublime,text3,怎么配置,运行python)