用python,之前运行的很好,但是
UnicodeDecodeError: 'utf8' codec can't decode byte 0xc4 in position 4: invalid continuation byte
添加了
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
中文
decode('utf-8')
还是报错,
最后发现python运行的机器,编码不是utf8,修改/etc/profile
修改编码即可
export LANG=en_US.UTF-8
阅读(10075) | 评论(0) | 转发(0) |