How Can I Solve Error Of Installation Dlib?
How I can install dlib. I tried to install dlib in many way but it's alway error. Got an error: ERROR: Complete output from command 'C:\ProgramData\Anaconda3\python.exe' -u -c 'imp
Solution 1:
Anaconda is available from, https://www.anaconda.com/distribution/#download-section
conda instruction are, https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf
Dlib is support with python 3.6 to 3.7.0 version s.Try to install the dlib in anaconda prompt by following command.,
step 1: conda create -n env_name python=3.7.0
step 2: conda activate env_name
step 3: conda install -c conda-forge dlib=19.17
-c is stands for channel, conda-forge is one of channels.
you can find all supported packages for conda's in this link https://repo.anaconda.com/pkgs/main/win-64/
Post a Comment for "How Can I Solve Error Of Installation Dlib?"