circleci: pip install dlib fails

前端 未结 1 929
忘掉有多难
忘掉有多难 2021-01-27 15:20

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 con         


        
相关标签:
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

    0 讨论(0)
提交回复
热议问题