一 连续retry最后超时报错
ERROR: Could not find a version that satisfies the requirement selenium (from versions: none)
ERROR: No matching distribution found for selenium
解决方案:
1.换国内镜像下载源
在C盘-用户-(你的用户名)创建一个名为pip的文件夹,在文件夹里新建一个起名为pip的记事本文件,输入
更改下载源
2. 暂时关闭VPN连接
有时候会因为挂了梯子导致连接不上,还有一种方法是更改浏览器的代理,但是比较麻烦。暂时直接关掉梯子比较快,下完之后再开开。
二 报错
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
requests 2.19.1 requires urllib3<1.24,>=1.21.1, but you have urllib3 2.0.7 which is incompatible.
解决方案:
可能因为你的requests版本过低,更新requests
pip3 install --upgrade requests
三 报错
twisted 18.7.0 requires PyHamcrest>=1.9.0, which is not installed.
解决方案
如果第二句话是which is not installed,下载相应的模块即可。
pip install PyHamcrest
版权归原作者 AllToBeNize 所有, 如有侵权,请联系我们删除。