我正在尝试按照本指南使用 matplotlib-cpp: 安装 matplotlib-cpp,但我在 Ubuntu 上尝试过,所以有点不同。
在“搜索目录”中,我已将这两个添加到“编译器”中:
/usr/local/include/python2.7
/usr/lib/python2.7/dist-packages/numpy/core/include/numpy
对于“Linker”,我已经包括:
/usr/lib/python2.7
在“链接器设置”部分,我添加了:
/usr/local/lib/libpython2.7.a
我遇到了 28 个错误。以下是其中一些:
/usr/src/Python-2.7.16/Python/dynload_shlib.c|94|undefined reference to `dlsym'|
/usr/src/Python-2.7.16/Python/thread_pthread.h|225|undefined reference to `pthread_create'|
/usr/src/Python-2.7.16/Python/thread_pthread.h|301|undefined reference to `sem_init'|
/usr/src/Python-2.7.16/./Modules/posixmodule.c|4022|undefined reference to `forkpty'|
缺什么?