urbanlife 发表于 2023-10-9 23:20:54

lxml

E:\>pip install -i https://mirrors.aliyun.com/pypi/simple lxml
WARNING: The index url "https://mirrors.aliyun.com/pypi/simple" seems invalid, please provide a scheme.
Looking in indexes: https://mirrors.aliyun.com/pypi/simple
WARNING: Location 'https://mirrors.aliyun.com/pypi/simple/lxml/' is ignored: it is either a non-existing path or lacks a specific scheme.
ERROR: Could not find a version that satisfies the requirement lxml (from versions: none)
ERROR: No matching distribution found for lxml
用镜像源安装发现这个问题,正常我安装的话网速太慢安装不了

isdkz 发表于 2023-10-9 23:21:11

你好,这个问题可能是由于镜像源链接格式不正确导致的。你可以尝试使用以下格式的链接:

pip install -i https://mirrors.aliyun.com/pypi/simple/ lxml


注意链接中的斜杠和冒号。此外,你也可以尝试使用其他的镜像源,例如清华大学的镜像源:

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple lxml


希望能帮到你。

陶远航 发表于 2023-10-9 23:21:19

问题出在你的URL中的冒号(:)是全角字符,而不是半角字符(:)。请将URL中的全角冒号更改为半角冒号,然后再尝试安装lxml。

请尝试以下命令:

E:\\>pip install -i https://mirrors.aliyun.com/pypi/simple lxml


这个命令将使用阿里云镜像源来安装lxml库。如果你仍然遇到速度慢的问题,可以尝试使用其他镜像源,例如腾讯云、豆瓣等。
请注意,本回答来自GPT-4
如果问题已经解决,请设置最佳答案
页: [1]
查看完整版本: lxml