大家好,感谢您的帮助。
我的问题是我正在尝试在CENTOS7上安装GDAL,使用yum实现它但在pyhton2.7上无法识别它。
使用yum,它从EPEL repo安装版本1.11.4-1.el7 但使用PIP LIST时,似乎没有安装。
尝试使用pip再次执行此操作时显示此错误:
extensions/gdal_wrap.cpp:3085:22: error fatal: cpl_port.h: No existe el fichero o el directorio
(is is spanish: "directory doesn't exit")
#include "cpl_port.h"
^
compilación terminada.
error: command 'gcc' failed with exit status 1
----------------------------------------
Failed building wheel for gdal
我认为pip正在尝试安装最新版本,但Centos仅接受v1.11.4
请帮我正确安装U_U
答案 0 :(得分:0)
gdal库文件位于 / usr / include / gdal 路径中,因此您需要将它们添加到路径中。
请试试
echo $'export CPLUS_INCLUDE_PATH=/usr/include/gdal\nexport \
C_INCLUDE_PATH=$CPLUS_INCLUDE_PATH' >> /etc/profile
source /etc/profile
...