make installThe most simple way to install dlib on Linux is by running the Makefile.
Requirements:
Steps:
git clone https://github.com/SurfaceSystems/cpp-dlib.gitcd cpp-dlibmake installYou can check if dlib was installed successfully by running: dlib --version
You can just build dlib and then install it manually.
Requirements:
Steps:
git clone https://github.com/SurfaceSystems/cpp-dlib.gitcd cpp-dlibmkdir build && cmake-B buildcmake --build buildThe executable is going to be generated at build/dlib.
On Windows, the simplest way to get dlib is by downloading a pre-compiled binary.
You can find pre-compiled binaries on:
Then you download the binary and add it to PATH so you can use it in the Console.
You can check if dlib was succesfully installed by running dlib --version
If you have the tools to compile, you can use mingw-make to compile dlib on Windows.
Requirements:
Steps:
git clone https://github.com/SurfaceSystems/cpp-dlib.gitcd cpp-dlibmake installIf you have the time to install all this requirements, I'm impressed. But here's how you can compile dlib without any UNIX-like environment.
Requirements: