码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-03-05 10:51:02      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:python   解决方案   sublime text 2   

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

[Decode error - output not utf-8]

解决方案如下:

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

打开如下:

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

将其修改为:

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

即可解决该问题。

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

标签:python   解决方案   sublime text 2   

原文地址:http://blog.csdn.net/jueblog/article/details/44078355

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!