windows使用pip安装selenium报错问题

时间:2018-01-23 22:06:33   收藏:0   阅读:1565

UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0xb9 in position 7: ordinal not in range(128)

技术分享图片

这是编码问题,需要在你的python安装目录下

这是我的安装目录C:\Python27\Lib\site-packages

添加sitecustomize.py文件

文件内容添加

import sys
sys.setdefaultencoding(gb2312)

之后在执行pip install -U selenium安装就不会报错啦

sys.setdefaultencoding是python设置系统默认编码,python会在下次自动运行这个文件sitecustomize.py

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!