[报错处理]Could not find a version that satisfies the requirement xml (from versions)

安装xml库发生报错

pip3 install xml
Collecting xml
  Could not find a version that satisfies the requirement xml (from versions: )
No matching distribution found for xml

尝试安装lxml进行代替

[email protected]:/home/ubuntu/publisher_info# pip3 install lxml
Collecting lxml
  Downloading https://files.pythonhosted.org/packages/30/65/6dcc7a1a0ec3bbc10a1316b3610f9997ca132183a5f5345c5b88fc1eaf79/lxml-4.2.1-cp35-cp35m-manylinux1_x86_64.whl (5.6MB)
    100% |████████████████████████████████| 5.6MB 3.5MB/s
Installing collected packages: lxml
Successfully installed lxml-4.2.1

原文地址:https://www.cnblogs.com/everfight/p/xml_install.html

时间: 2024-10-09 17:12:36

[报错处理]Could not find a version that satisfies the requirement xml (from versions)的相关文章

python导入第三方库schedule报错ERROR: Could not find a version that satisfies the requirement schedule (from

RROR: No matching distribution found for tensorflow的情况这可能是因为网络的问题,这时我们使用国内的镜像源来加速输入命令:python -m pip install schedule(如果你安装的是别的库,请输入别的库名) 原文链接:https://blog.csdn.net/shaui541607120115/article/details/89640808 原文地址:https://www.cnblogs.com/zhanghuanfree/

mac上安装pil报错: ERROR: Could not find a version that satisfies the requirement pil (from versions: none):

mac上安装pil报错: ERROR: Could not find a version that satisfies the requirement pil (from versions: none): 原文地址:https://www.cnblogs.com/Zhao159461/p/12629635.html

转:Python出现Could not find a version that satisfies the requirement openpyxl (from versions: )

https://blog.csdn.net/weixin_42840933/article/details/85308265 一.环境使用python3.7时,用pip安装openpyxl出现如下错误: 系统环境:windows10家庭版Python版本:python3.7.1IDE:sublime_text 3二. 解决方案按照提示所示是其中一个原因是pip版本过低,需要更新pip:python -m pip install --upgrade pip由于python国内网络不稳定,一直报错,

Windows下Pycharm安装Tensorflow:ERROR: Could not find a version that satisfies the requirement tensorflow

今天在Windows下通过Pycharm安装Tensorflow时遇到两个问题: 使用pip安装其实原理都相同,只不过Pycharm是图形化的过程! 1.由于使用国外源总是导致Timeout 解决方法是在Pycharm中添加清华源 https://mirrors.aliyun.com/pypi/simple/(或者其他的国内源) 2.替换成清华源后安装报错: ERROR: Could not find a version that satisfies the requirement tensor

Qt & VS2013 报错:There's no Qt version assigned to this project for platform Win32

如果你想了解关于Qt与VS2013开发环境搭建,可以至此翻页. 这里主要分享环境已搭建成功,在构建项目时遇到的报错解决方案. [1]Qt 与 VS2013开发环境构建时报错 报错界面如下: 注意:对话框左上角的Qt Visual Studio Add-in. [2]解决方案 为了更充分的解决问题,分为以下四步进行: 步骤一:检查环境变量 首先,保证Qt安装的路径已添加进环境变量. 步骤二:检查Qt Versions 点击VS2013工具栏中的Qt5子菜单,显示如下界面: 点击Qt Options

Could not find a version that satisfies the requirement numpy>=1.7.0 (from pan das==0.17.0) (from versions: ) No matching distribution found for numpy>=1.7.0 (from pandas==0.17.0)

今天晚上一直在安装pandas,天杀的,真的是太难了.后来发现提示: Could not find a version that satisfies the requirement numpy>=1.7.0 (from pan das==0.17.0) (from versions: ) No matching distribution found for numpy>=1.7.0 (from pandas==0.17.0) 更新numpy的版本步骤如下: 1.查看当前numpy安装包版本:p

pip3版本已经是最新,安装openxl失败,Could not find a version that satisfies the requirement openxl

pip3版本已经是最新,安装openxl失败,提示 Could not find a version that satisfies the requirement openxl,No matching distribution found for openxl 用以下问答中的第3个答案解决,其他两种应该也没问题. https://ask.csdn.net/questions/1053770 原文地址:https://www.cnblogs.com/tiaotiaoxia/p/12315082.h

CXF报错[1 counts of IllegalAnnotationExceptions]and[Two classes have the same XML type name]and[Use @XmlType.name and @XmlType.namespace to assign different names to them]

启动时CXF报错如下: Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions Two classes have the same XML type name "{http://service.facade.masopen.shengpay.com/}verifyResponse". Use @XmlType.name and

anaconda安装tensorflow问题: Could not find a version that satisfies the requirement tensorboard

背景:想要为下载的anaconda安装tensorflow 使用命令 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 报错如下: 解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pycharm创建项目,指定项目的运行环境为刚才创建的虚拟环境. 一:创建虚拟环境:conda create -n test python=3.5 -n后面是虚拟环境的名字   python=指定虚拟环境使