windows使用pip安装selenium报错问题

Posted JahanGu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows使用pip安装selenium报错问题相关的知识,希望对你有一定的参考价值。

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

 

以上是关于windows使用pip安装selenium报错问题的主要内容,如果未能解决你的问题,请参考以下文章

Windows系统下Python使用pip安装第三方包报错SSL模块不可用

pip安装selenium报错:Read timed out

pip install -U selenium 报错为啥呢?

如何在 Windows XP 上使用 pip 安装 selenium 包?

selenium 安装报错问题

[Python爬虫] 在Windows下安装PIP+Phantomjs+Selenium