开发者

Sublime如何配置Python3运行环境

目录
  • 新增python3编译环境
  • 选中Python3环境
  • 使用Python3编译运行
  • 可能遇到的问题
  • 总结

新增Python3编译环境

Tools > Build  System > New Build System

将默认内容替换为:

{
    "cmd": ["python3", "-u", "$file"],
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python"
}

保存为 Python3.sublime-build

选中Python3环境

Tools > Build System > Python3

使用Python3编译运行

Ctrl + b

可能遇到的问题

问题

UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-1: ordinal not in range(128)

原因

默认是ascii编码但是输出中包含中文

解决

Preferences > Browse Packages > Users > Python3.sublime-build

修改配置文件, 配置文件中新增一条

"env": {"LANG": "en_US.UTF-8php"}

修改后如下:

{
    "cmd": ["python3", "-u", "$fihttp://www.devze.comle"],
    "file_reBhirwgex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.python",
   php "env": {"LANG": "en_US.UTF-8php"}
}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程客栈(www.devze.com)。

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜