我正在尝试在Mac OS X El Capitan上安装依赖项:
pip install reportlab
但我得到一个错误:
/Users/user/anaconda/include/ft2build.h:56:10: fatal error: 'freetype/config/ftheader.h' file not found
#include <freetype/config/ftheader.h>
^
1 error generated.
error: command 'gcc' failed with exit status 1
此上下文中缺少的头文件有什么问题?
答案 0 :(得分:0)
我意识到安装是在目录中寻找标题:
'user/anaconda/include/freetype/config/ftheader.h'
但该文件位于目录
中'user/anaconda/include/freetype2/freetype/config/ftheader.h'
所以我只是将'freetype'目录复制到了
'user/anaconda/include/'