AWS Linux Server Installs Package R

enter image description hereI am trying to install the package "data.table" (and "aws.s3)" through Rstudio Server on an instance of Amazon Linux, following this guide: http://stanke.co/category/r/

Sorry, I am getting the following error message. I really don't know what else to do.

Can anybody help? I installed devtools and was able to install other packages like xml2, devtools and deplyr.

+5
source share
4 answers

I had the same issue on AWS and has already been fixed. You need to first install the gcc64 and openmp common support library.

sudo yum install gcc64
sudo yum install libgomp

.R Makevars ( R, ):

CC = /usr/bin/gcc64
CXX = /usr/bin/g++
SHLIB_OPENMP_CFLAGS = -fopenmp

, ...

+4

dmlc-core.

:

+1

https://github.com/RcppCore/RcppArmadillo/issues/200, , g++. , , devtools, [-Wdeprecated-], : sudo yum remove gcc72-c++.x86_64 libgcc72.x86_64

+1
yum install R-devel

.

0
source

Source: https://habr.com/ru/post/1693057/


All Articles