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‘)
时间: 2024-10-12 13:30:12