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

Solution for Python Extention matplotlib.pyplot loading Error

时间:2015-03-10 21:00:50      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:

When I execute the following python instruction in python shell
 
>>>import matplotlib.pyplot as plt

error occured and the error message show as follows,
"UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xea in position 0: ordinal not in range(128)"

Solution:
Before execution of import instruction, add this set of instructions:
 
>>> import sys
>>> reload(sys)
>>> sys.setdefaultencoding(‘utf-8‘)

Solution for Python Extention matplotlib.pyplot loading Error

标签:

原文地址:http://www.cnblogs.com/NetElite/p/4326831.html

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