Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我尝试时,import dlib我都会收到以下错误。
import dlib
/Users/Llama/anaconda/bin/python.app: line 3: 4052 Segmentation fault: 11 /Users/Llama/anaconda/python.app/Contents/MacOS/python "$@"
有人可以帮我解决这个问题,我已经坚持了好几天了,这对我正在从事的学校项目至关重要。
好吧,dlib 1似乎是一个用 C++ 编写的 Python 模块。这是一种可能存在二进制不兼容的情况,或者也可能是 dlib 模块本身的错误。
看来您正在使用 anaconda 2项目中的 Python,您是如何安装 dlib 的?
您还可以尝试运行 python-v以获取更多信息:
-v
python -v -c 'import dlib'