This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: pip is broken
Type: behavior Stage: resolved
Components: Installation Versions: Python 3.5
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: Dingo64
Priority: normal Keywords:

Created on 2017-06-05 12:22 by Dingo64, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg295180 - (view) Author: Dingo64 (Dingo64) Date: 2017-06-05 12:22
C:\Python35>pip install dlib-19.4.0-cp35-cp35m-win_amd64.whl
dlib-19.4.0-cp35-cp35m-win_amd64.whl is not a supported wheel on this platform.

How can it be not supported when I have Python 3.5 on AMD64 Windows machine?

C:\Python35>wmic os get osarchitecture
OSArchitecture
64-bit

C:\Python35>python --version
Python 3.5.0
msg295184 - (view) Author: Dingo64 (Dingo64) Date: 2017-06-05 12:35
python -m pip install --upgrade pip
fixed the pip so now 
C:\Python35>pip3 install dlib-19.4.0-cp35-cp35m-win_amd64.whl
Processing c:\python35\dlib-19.4.0-cp35-cp35m-win_amd64.whl
Installing collected packages: dlib
Successfully installed dlib-19.4.0
worked.
History
Date User Action Args
2022-04-11 14:58:47adminsetgithub: 74757
2017-06-05 12:38:19r.david.murraysetresolution: fixed -> third party
2017-06-05 12:35:47Dingo64setstatus: open -> closed
resolution: fixed
messages: + msg295184

stage: resolved
2017-06-05 12:22:23Dingo64create