初稿于:2017.3.24
问题:
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd0 in position 1: ordinal
在window
平台上用pip2
安装django
,出现上面错误。
方法:
第一步
在 python
下的lib
下的ntpath.py
中添加
# -*- coding=utf-8 -*-
import sys reload(sys)
sys.setdefaultencoding('utf-8')
第二步:
将约84行的result_path = result_path+ p_path
替换为result_path = str(result_path) + str(p_path)