Dlib
Dlib copied to clipboard
Inaccurate installation guide
for python 3.8 It shouldn't be: python -m pip install dlib-19.22.99-cp38-cp38m-win_amd64.whl It should be: python -m pip install dlib-19.22.99-cp38-cp38-win_amd64.whl
python 3.9 It shouldn't be: python -m pip install dlib-19.22.99-cp39-cp39m-win_amd64.whl It should be: python -m pip install dlib-19.22.99-cp39-cp39-win_amd64.whl
You're indeed correct !!
The dlib whl file for python version 3.7 have cp37m in it whereas for version 3.8 and 3.9 there is no m , so he must have mistook it for version 3.8 and 3.9 :)
Corrected Thanks!!!