PackagesNotFoundError: The following packages are not available from current channels: - dlib

The dlib installation error is shown in the figure. After
insert image description here
tossing for a long time, the installation was finally successful. .
The recording process is as follows:

anaconda search -t conda dlib

You can see the different versions of dlib, and find the one that needs to be downloaded for your own system. For
insert image description here
example, the window64 bit I want to download is here
insert image description here
, then execute the following command to download

conda install -c https://conda.anaconda.org/conda-forge dlib

insert image description here

Is to find its path, and then add its name to download. Note that there is no "/" between conda-forge and dlib, separated by a space

Finally, you can see that the download is complete!
insert image description here

Guess you like

Origin blog.csdn.net/changyana/article/details/123824433