首页 > 其他分享 >ERROR: Could not find a version that satisfies the requirement selunium (from versions: none)

ERROR: Could not find a version that satisfies the requirement selunium (from versions: none)

时间:2023-09-26 15:22:18浏览次数:47  
标签:requirement versions Could selenium version ERROR satisfies find

错误信息

ERROR: Could not find a version that satisfies the requirement selenium (from versions: none)
ERROR: No matching distribution found for selenium

解决方案

方法1:增大超时时间

pip --default-timeout=100 install selenium

方法2:修改安装源为清华安装源

pip install --index https://mirrors.ustc.edu.cn/pypi/web/simple/ selenium

采用方法二可以正常下载. 问题解决

解决方案原文链接:https://blog.csdn.net/qq_14960889/article/details/101907053

标签:requirement,versions,Could,selenium,version,ERROR,satisfies,find
From: https://www.cnblogs.com/panie2015/p/17730161.html

相关文章

  • 错误 git@github.com: Permission denied (publickey). fatal: Could not read from r
    场景:本地git已登录了账号,需要在github下载项目时提示git@github.com:Permissiondenied(publickey).fatal:Couldnotreadfromremoterepository.,解决方法是获取本地的密钥,在gitHub中添加即可,不需要有账号上的对应,不需考虑本地切换git账号问题. 1.判断错误情况:permissio......
  • Logstash报错: Could not index event to Elasticsearch
    Logstash报错:CouldnotindexeventtoElasticsearch 一、环境说明Logstash7.3ElasticSearch7.3二、现象logstash/logs/logstash-plain.log大量警告:ValidationFailed:1:thisactionwouldadd[1]totalshards,butthisclustercurrentlyhas[1000]/[1000]maximum......
  • ## Could not find a working installation of Boost.
     001、问题 002、解决方法(base)[root@pc1MaSuRCA-3.3.1]#yum-yinstallboostboost-devel(base)[root@pc1MaSuRCA-3.3.1]#yum-yinstallgcc-c++.x86_64gperf 参考:https://code84.com/754823.html ......
  • python教程:解决报错:ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIRE
    从以下两种途径来解决。清除缓存这个错误通常表示安装的软件包与要求文件中的哈希值不匹配。这可能是由于要求文件被更改或软件包被篡改引起的。为了解决这个问题,你可以尝试以下几个步骤:清理缓存:运行以下命令清理pip缓存:pipcachepurge```更新要求文件:如果你更新了软件包的版本......
  • Could not open client transport with JDBC Uri: jdbc:hive2://node1:10000: java.n
    今天发现连接beeline是时候连接不上,不应该啊昨晚还可以的qaq  破案了,我启动了metastore之后忘记去启动hiveserver2hiveserver2都没启动能连上就怪了 一定一定要记得启动顺序!!!hadoop+metastore+hiveserver2+beeline ......
  • org.apache.cxf.interceptor.Fault: Could not send Message
    //cxf调用方法publicStringcallWebService(StringWSDL,Stringmedthod,StringinXML){JaxWsDynamicClientFactoryclientFactory=JaxWsDynamicClientFactory.newInstance();Clientclient=clientFactory.createClient(WSDL);try{Ob......
  • AtCoder Grand Contest 023 E Inversions
    洛谷传送门AtCoder传送门首先将\(a\)从小到大排序,设\(p_i\)为排序后的\(a_i\)位于原序列第\(p_i\)个位置,\(x_i\)为要填的排列的第\(i\)个数。设\(A=\prod\limits_{i=1}^n(a_i-i+1)\),则\(A\)为排列的总方案数(考虑按\(a_i\)从小到大填即得)。套路地,统......
  • 【ERROR: Could not find a version that satisfies】【ERROR: No matching distribut
    pip包安装出错真是把我烦死了,在yt上学东西,结果一直出这样的错,之前我都是把包下载到本地安装的,这也不是长久之计。然后我试了使用-i,使用--trusted-host,使用--user,使用--upgradepip...全都不管用。后来我想,究竟是什么时候出现这个问题的,好像很久之前就有了...老提示不安全的连......
  • WSL 炼丹报错:Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: c
    确认驱动没问题(nvidia-smi可以正常使用)解决办法参照:https://github.com/pytorch/pytorch/issues/85773#issuecomment-1288033297内容如下:......
  • 解决方法:ERROR: Could not install packages due to an EnvironmentError: [Errno 2]
    在使用windows系统用pip命令安装ipyparallel时,出现了这种错误:ERROR:CouldnotinstallpackagesduetoanEnvironmentError:[Errno2]Nosuchfileordirectory:'C:\Users\xxx\AppData\Local\Temp\pip-install-8bc4asmd\ipyparallel\ipyparallel-7.1.0.data/data/share/j......