英文:
i can not with pip install lxml
问题
当我想安装lxml时,我遇到了这个错误:
错误: 找不到满足要求的版本 lxml(来自版本:none)
错误: 找不到匹配的分发版本 lxml
即使我尝试更新pip,也会出现错误:
警告: 在连接被“ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")”中断后重试 (Retry(total=4, connect=None, read=None, redirect=None, status=None)): /simple/pip/
英文:
When I want to install lxml, I encounter this error:
ERROR: Could not find a version that satisfies the requirement lxml (from versions: none)
ERROR: No matching distribution found for lxml
Even when I try to update pip, I get an error:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.org', port=443): Read timed out. (read timeout=15)")': /simple/pip/
答案1
得分: 0
尝试运行 pip install lxml==3.4.2
英文:
Try running pip install lxml==3.4.2
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论