首页 > 解决方案 > lxml-4.3.3-cp35-cp35m-win32.whl 不是这个平台支持的轮子

问题描述

我正在尝试安装 lxml 4.3.3。在我的 python 3.5.1 32 位系统上并收到“不支持轮子”消息。

我没有网络访问权限,所以我下载了 whl 文件并尝试在本地安装:

pip install lxml-4.3.3-cp35-cp35m-win32.whl

但我得到:

lxml-4.3.3-cp35-cp35m-win32.whl is not a supported wheel on this platform.

确保我有正确的版本:

C:\Temp>python

Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32

Type "help", "copyright", "credits" or "license" for more information.

>>> import platform

>>> platform.architecture()

('32bit', 'WindowsPE')

看着我的点子:

C:\Temp>pip --version

pip 7.1.2 from c:\program files\python35-32\lib\site-packages (python 3.5)

标签: pythonpiplxml

解决方案


推荐阅读