我已经下载,编译并安装了必要的先决条件(PROJ和GDAL)。我在RStudio中运行了以下命令:
install.packages("rgdal",lib="/Users/usr/anaconda3/lib/R/library", configure.args = "--with-proj-include=/Library/Frameworks/PROJ.framework/Versions/4B/unix/include --with-proj-lib=/Library/Frameworks/PROJ.framework/Versions/4B/unix/lib")
所有检查和配置均有效,直到...
checking proj_api.h presence and usability... no
configure: error: proj_api.h not found in standard or given locations.
尽管我在install.packages()
调用中为include文件夹指定了正确的路径,但还是发生了这种情况。我也尝试过指向proj_api.h
文件所在的Headers文件夹,但这也不起作用。对我要去哪里出错有任何见解吗?