Python3: Cannot Import Dlib (but Installed Using Conda)
I used conda install -c conda-forge dlib to successfully install dlib but when using import dlib I got ModuleNotFoundError I don't want to go all the way to manually build dilb usi
Solution 1:
Solved for now. It turns out that I didn't properly building and setting up Dlib library. I followed this tutorial and making sure that I am using Visual Studio 2015 update 3 (was using update 2 previously). Now It works using conda install -c conda-forge dlib=19.7
Post a Comment for "Python3: Cannot Import Dlib (but Installed Using Conda)"