如果你有一个项目执行了requirements后,一直提示lxml失败,解决步骤如下
1、尝试升级pip
python.exe -m pip install --upgrade pip
2、尝试下载包手动安装
下载网址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml
选择:lxml‑4.9.0‑cp311‑cp311‑win_amd64.whl
3、python第三方包手动安装方法:
进入下载包所在文件夹,然后执行pip install lxml-4.9.0-cp311-cp311-win_amd64.whl
4、此时你会发现requirements文件中还是提示lxml没有安装
那么此时只有一种可能,你刚才安装的版本比提示的版本高,此时我们可以将lxml信息从requirements删掉,重新执行一下freeze即可
生成requirements.txt文件 命令:pip freeze > requirements.txt
5、解决
标签:lxml,requirements,Python,win,pip,win11,安装,cp311 From: https://www.cnblogs.com/beichengshiqiao/p/17584030.html