How can I install the development version of `data.table 1.9.3` on Rstudio mounted on a redhat linux server?

I am currently trying to use the foverlaps function in version data.table 1.9.3. However, I need a lot of RAM and power. Therefore, I pay the clock to use the Revolution R Linux software on Amazon, which is mounted on a 122 GB EC2 memory server.

The problem is that I have to use a function to run data.table version 1.9.3 install_github. However, I cannot install devtoolsin R. I looked back here on stackoverflow and realized that the package curl-devmust be installed. However, Revolution R does not allow me to use sudo commands. Therefore, I can not install the latest version of data.table 1.9.3.

Currently, I'm not sure what I can do. I also tried directly copying the latest zip version 1.9.3 to the library, and R acknowledges that I just installed version 1.9.3, but I cannot call any functions. For example, when I do:, ?foverlapsI just get "No documentation for" foverlaps in the specified packages and libraries.

Does anyone know how I can get 1.9.3 and run on a linux server redhat Rstudio? Thank!

+4
source share
1 answer

ZIP github, R CMD INSTALL <unzipped directory> . , , , . , chron reshape2. ( ) install.packages().

+1

All Articles