Dlib installation error?

Here is how I solved the same issue.

  1. Make sure you have installed cmake and CMAKE_FOLDER\bin added it in environment varaible
  2. Install anaconda
  3. then run following commands in anaconda shell.

conda update conda

conda update anaconda

  1. create new environment conda create -n env_dlib python=3.6
  2. activate enviroment conda activate env_dlib
  3. install dlib conda install -c conda-forge dlib

Verify your installation in python shell using

import dlib dlib.__version__

Leave a Comment