Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not able to install V8 package on ubuntu?

Tags:

r

r-package

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! :)

like image 962
Nikhil Avatar asked Jun 10 '20 11:06

Nikhil


1 Answers

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
like image 84
duckmayr Avatar answered Oct 23 '22 02:10

duckmayr