2017-11-06 20 views
1

私はR 3.4.2(RStudio 1.1.383)とubuntu 16.04にrgdalをインストールしようとしていますが、問題はいつも終わりです。ubuntuにrgdalをインストールする際に問題が発生する16.04

私はlibproj-devのような依存関係を手作業でインストールするか、最後に試してhomebrewを試してみるなど、多くの推奨事項に従ってきました。

gdal 1.11.3をインストールできましたが、それだけでは不十分です。ここで

は私が書くときに出力される

install.packages('rgdal', type = "source", configure.args=c('--with-proj-include=/usr/local/include','--with-proj-lib=/usr/local/lib')) 

Installing package into ‘/home/tupac/R/x86_64-pc-linux-gnu-library/3.4’ 
(as ‘lib’ is unspecified) 
essai de l'URL 'https://cran.rstudio.com/src/contrib/rgdal_1.2-15.tar.gz' 
Content type 'application/x-gzip' length 1648779 bytes (1.6 MB) 
================================================== 
downloaded 1.6 MB 

* installing *source* package ‘rgdal’ ... 
** package ‘rgdal’ correctement décompressé et sommes MD5 vérifiées 
configure: CC: gcc -std=gnu99 
configure: CXX: g++ 
configure: rgdal: 1.2-15 
checking for /usr/bin/svnversion... no 
configure: svn revision: 691 
checking for gdal-config... /usr/bin/gdal-config 
checking gdal-config usability... yes 
configure: GDAL: 1.11.3 
checking GDAL version >= 1.6.3... yes 
checking gdal: linking with --libs only... yes 
checking GDAL: /usr/share/gdal/1.11/pcs.csv readable... yes 
configure: -g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -I/usr/local/include 
checking proj_api.h presence and usability... no 
configure: error: proj_api.h not found in standard or given locations. 
ERROR: configuration failed for package ‘rgdal’ 
* removing ‘/home/tupac/R/x86_64-pc-linux-gnu-library/3.4/rgdal’ 
Warning in install.packages : 
    installation of package ‘rgdal’ had non-zero exit status 

も同じpostに発見されたが、それはそうしながら、私の場合には動作しません。与えられたソリューションが動作するように、エラーが見つかりません「proj_api.h」他の多くのユーザーにとって

この問題の修正にご協力いただきありがとうございます。

+0

あなたの助けをありがとう、あなたは 'sudoはlibproj-dev'をaptのインストールすることを知っていますRセッションではなく、端末からインストールされますか? –

+0

はい、本当にありがとうございます。私はターミナルでほとんどすべてを動かしました。 –

+0

'sudo apt-get install libgdal-dev'? – delaye

答えて

1

私は最終的に解決策を見つけることができました。

私は奇跡コードが

sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable 
sudo apt update 
sudo apt install gdal-bin python-gdal python3-gdal libgdal1-dev 

あるこのpost

の答えを、その後念のために

関連する問題