求助,Python3.5,windows10 下安装 lxml 失败

发布网友 发布时间:2022-04-23 01:52

我来回答

1个回答

热心网友 时间:2022-05-03 09:50

在win10 位系统安装 lxml (Python 3.5)
本想直接用pip install lxml 命令安装完事,但是由于安装过程中跟VS的一些东西冲突怎么都安装不上,搜索到以下方法,问题解决。

步骤:

1.下载跟python匹配的.whl 文件(lxml-3.6.0-cp35-cp35m-win_amd.whl)下载地址 也可以下载附件,但未必适合你。

2.安装 python -m pip install lxml-3.6.0-cp35-cp35m-win_amd.whl

可能出现的问题

lxml-3.6.0-cp35-cp35m-win_amd.whl is not a supported wheel on this platform

版本不匹配,一定要对应版本

cp35 means CPython 3.5 you need lxml-3.6.0-cp35-cp35m-win_amd.whl instead.

源自 stackoverflow

Python 3.5 - how to install lxml in Windows 7 bits
复制代码
1. go to this repository and download a version which matches your Python installation (the version number, and 32- vs -bit. I use Python 3.5.1 -bit, installed on Windows 10, so on that page, I chose lxml-3.6.0-cp35-cp35m-win_amd.whl. You say you use the 32-bit version, so use a version that matches that.
My download directory is d:\Downloads. Python must be in your PATH environment variable for the next step to work. Use a command like the following, changing "D:\Downloads" to the pathname to your download directory. Then, at a DOS prompt, type:

2. python -m pip install "D:\Downloads\lxml-3.6.0-cp35-cp35m-win_amd.whl" lxml-3.6.0-cp35-cp35m-win_amd.whl

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com