国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > sublime text 2编译Python时打印中文报错的解决方案

sublime text 2编译Python时打印中文报错的解决方案

来源:程序员人生   发布时间:2015-03-31 08:03:51 阅读次数:2324次

当用sublime text 2 编译 python 文件时,若 print 打印出的中文时,控制台会报错:

[Decode error - output not utf⑻]

解决方案以下:

打开 sublime text 2 首选项 -> 阅读插件,进入 Python 文件夹,并找到 Python.sublime-build 文件。

打开以下:

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

将其修改成:

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

便可解决该问题。

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生