Open leesper opened 7 years ago
Python version: 3.6 Operating System: MacOS 10.12.6 I tried to import face_recognition on pycham, but get an error of 'Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)': what can I do to fix it?
@leesper Seems to be something with how dlib looks for that library, but I'm not really sure. According this page, copying libboost to the current folder might work but that seems like a bad workaround: https://stackoverflow.com/questions/44627506/cant-import-so-file-from-another-so
@edentyin That's unrelated to this issue. See #83 instead. Sounds like the issue is that using Anaconda Python on OSX with dlib doesn't work. I haven't seen the issue myself maybe because I use the Python.org version of Python on OSX.
I got similar issue. I use the ubuntu vmware and when running got an error that it cannot import face_recognition.
i ran the file on the face_recognition examples folder.
python facerec_from_webcam_faster.py
@ageitgey thx, I'll have a try
first step: find if your system has libboost_python.so.1.64.0 or not cd / sudo find ./ -name libboost_python.so.1.64.0 second step: if the first step the libboost_python.so.1.64.0 exist, eg: /usr/local/lib/libboost_python.so.1.64.0 using strace to find the search path of python,if in these paths the libboost_python.so.1.64.0 doesn't exist, you can make of soft link to one of the search path eg: ln -s /usr/lib/libboost_python.so.1.64.0 /usr/local/lib/libboost_python.so.1.64.0 trying use strace python facerec_from_webcam_faster.py to find the
ln -s /usr/lib/libboost_python.so.1.64.0 /usr/local/lib/libboost_python.so.1.64.0 is incorrect reverse the params....
Description
I tried to import face_recognition, but get an error of libboost_python.so.1.64.0 not found
What I Did
I pip install the face_recognition, and install the newest boost 1.64.0