bakercp / ofxDlib

An openFrameworks wrapper for dlib. http://dlib.net/
MIT License
52 stars 15 forks source link

/linux64/install.sh fails on Ubuntu 16.04 LTS #34

Open hiroMTB opened 4 years ago

hiroMTB commented 4 years ago

Issue

libblas-dev and liblapack does not meet dependencies on Ubuntu 16.04 LTS.

Here is the dependency tree.

My trial

So I tired to install older version of gcc with following command. sudo apt-get install gcc-5-base=5.3.1-14ubuntu2

It gives me more than 20 dependencies mismatch lie below.

The following packages have unmet dependencies:
 colord : Depends: libsqlite3-0 (>= 3.5.9) but it is not going to be installed
 gkbd-capplet : Depends: libgnomekbd8 (>= 3.6.0) but it is not going to be installed
                Depends: libxklavier16 (>= 5.0) but it is not going to be installed
 ibus : Depends: gir1.2-gtk-3.0 (>= 3.8.5) but it is not going to be installed
        Depends: adwaita-icon-theme but it is not going to be installed
        Recommends: im-config but it is not going to be installed

 ....

Temporal solution

comment out ADDON_PKG_CONFIG_LIBRARIES += blas lapack in addon_config.mk Then I can compile my project with ofxDlib.

Test environment