python安装某些模块的时候,老是出错(当然错误是Unicode和ascii字符的问题)
1、安装模块字符错误
在python的Lib\site-packages文件夹下新建一个sitecustomize.py,内容为:
# encoding=utf8
import sys
reload(sys)
sys.setdefaultencoding('utf8')
此时重启python解释器,可以解决了。
pip的国内源
这里,我只说下指令,其它百度吧。感觉这个华中科大的源最快;
pip install ** -i http://pypi.mirrors.ustc.edu.cn/simple