Skip to content Skip to sidebar Skip to footer

Dlib Is Not Installing In Pythonanywhere Virtualenv

I am trying to recognize faces in an image using 'face_recognition' library,to use it we have to install dlib but when installing dlib in pythonanywhere virtualenv console it is th

Solution 1:

It looks like there's some strange problem with the current version of dlib that's stopping it from installing on PythonAnywhere. Version 19.3.1 seems to work:

pip2.7 install --user dlib==19.3.1

Solution 2:

pip install https://pypi.python.org/packages/da/06/bd3e241c4eb0a662914b3b4875fc52dd176a9db0d4a2c915ac2ad8800e9e/dlib-19.7.0-cp36-cp36m-win_amd64.whl#md5=b7330a5b2d46420343fbed5df69e6a3f

Try installing from this cmd command, assuming that you have already added pip in path

Post a Comment for "Dlib Is Not Installing In Pythonanywhere Virtualenv"