I am trying to install V8 package on ubuntu but i am getting below error:
Warning in install.packages :
installation of package ‘V8’ had non-zero exit status
Any help would be appreciated! :)
I am trying to install V8 package on ubuntu but i am getting below error:
Warning in install.packages :
installation of package ‘V8’ had non-zero exit status
Any help would be appreciated! :)
You need some system dependencies. V8
depends on the R package curl
. To resolve curl
's system dependencies, open a terminal via CTRL-Alt-T and use
sudo apt install libcurl4-openssl-dev
V8
itself also has a system dependency which you can resolve after opening a terminal and using
sudo apt install libv8-dev
I had the same problem and fixed it installing r-cran-curl
. It installs all R packages required for Rcurl, including V8, and also all system library dependencies
sudo apt-get update
sudo apt-get -y install r-cran-curl