我正在尝试安装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)