|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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
用镜像源安装发现这个问题,正常我安装的话网速太慢安装不了
你好,这个问题可能是由于镜像源链接格式不正确导致的。你可以尝试使用以下格式的链接:
- pip install -i https://mirrors.aliyun.com/pypi/simple/ lxml
复制代码
注意链接中的斜杠和冒号。此外,你也可以尝试使用其他的镜像源,例如清华大学的镜像源:
- pip install -i https://pypi.tuna.tsinghua.edu.cn/simple lxml
复制代码
希望能帮到你。
|
|