Skip to content Skip to sidebar Skip to footer

Circleci: Pip Install Dlib Fails

I have a python project that requires dlib. I am trying to setup CircleCI and wrote my config.yml as follows: # Python CircleCI 2.0 configuration file # # Check https://circleci.co

Solution 1:

You can install dlib using conda environment (with python 3.6 to 3.7.0 working normally).

First create an environment , conda create -n env_name python=version

then activate, conda activate env_name

now install via conda forge channel, conda install -c conda-forge dlib=19.17

Post a Comment for "Circleci: Pip Install Dlib Fails"