I am trying to install lxml 4.3.3. on my python 3.5.1 32bit system and get the "wheel not supported" message.
I don't have web access so I downloaded the whl file and tried to install locally:
pip install lxml-4.3.3-cp35-cp35m-win32.whl
but I get:
lxml-4.3.3-cp35-cp35m-win32.whl is not a supported wheel on this platform.
Making sure I have the right version:
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')
And looking at my pip:
C:\Temp>pip --version
pip 7.1.2 from c:\program files\python35-32\lib\site-packages (python 3.5)