repo android source
出现
UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xc0 in position 9: ordinal not in range(128)
这样的错误。
解决办法:
python安装目录:/etc/python2.x/sitecustomize.py
import sys
reload(sys)
sys.setdefaultencoding(‘utf-8’)
修改为:
try:
import apport_python_hook
except ImportError:
pass
else:
apport_python_hook.install()
合作联系邮箱:cofface#cofface.com(请将#替换为@)
转载请注明来源:Cofface Blog » 同步源码出现UnicodeDecodeError解决方法