Error installing R package for Linux

2019-06-14 22:25发布

Im trying to install a package named "rgeos" on R 3.3, but when I type

install.packages("rgeos")

But it returns me the following error (same happens with other packages, but not all the packages):

> * installing *source* package ‘rgeos’ ...
** package ‘rgeos’ successfully unpacked and MD5 sums checked
configure: CC: gcc
configure: CXX: g++
configure: rgeos: 0.3-19
checking for /usr/bin/svnversion... no
configure: svn revision: 524
checking for geos-config... no
no
configure: error: geos-config not found or not executable.
ERROR: configuration failed for package ‘rgeos’
* removing ‘/home/kdg/R/x86_64-pc-linux-gnu-library/3.3/rgeos’
> 
> The downloaded source packages are in
>   ‘/tmp/Rtmpsa5pDo/downloaded_packages’ Warning message: In
> install.packages("rgeos") :   installation of package ‘rgeos’ had
> non-zero exit status

Any clues how con install this package?

标签: r linux packages
2条回答
聊天终结者
2楼-- · 2019-06-14 22:52

It seems that when running R in Linux is necessary to install some build tools. As in this case, in the terminal:

sudo apt-get install libgeos-dev

Then try package install again.

hints from here

查看更多
The star\"
3楼-- · 2019-06-14 22:52

I solved it with the following:

cd /opt
git clone https://github.com/libgeos/geos
cd geos
export CC='clang' && export CXX='clang++' && export OBJC='clang'
./autogen.sh
./configure
make
sudo -EH make install
R
install.packages('rgeos')

NB: export clang is particular to me; I am just pasting my exact solution.

查看更多
登录 后发表回答