luoyetx / face-alignment-at-3000fps

C++ implementation of Face Alignment at 3000 FPS via Regressing Local Binary Features
BSD 3-Clause "New" or "Revised" License
197 stars 120 forks source link

Lib versions problem #9

Open oxydron opened 7 years ago

oxydron commented 7 years ago
$ ./FaceAlignment prepare    
$ ./FaceAlignment: /home/bh/anaconda3/lib/libgomp.so.1: version `GOMP_4.0' not found (required by ./FaceAlignment)
$ ./FaceAlignment: /home/bh/anaconda3/lib/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by ./FaceAlignment)

Trying to use ./FaceAlignment prepare causes this error, related to wrong library versions. Any tip to solve this?

luoyetx commented 7 years ago

It seems the program links the wrong dynamic so file. Usually, these so files should lie in /usr/lib or /usr/local/lib. Error warns you link the files from anaconda.

oxydron commented 7 years ago

Indeed it does. And did ls and grep on both directories (/usr/lib and /usr/local/lib) and got no libgomp1. And the strange is: by looking for it using aptitude, aptitude search libgomp I found the package and it is already installed.