Install R packages as you would do on Windows (i.e., no long compilation time). In addition, this script asks to install R development tools, Git and RStudio.
Just to save time for my future self. Hopefully, it can help people in the cyberspace too
Just copy and paste this one-line command:
sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/pachadotdev/r-packages-ubuntu/main/configure.sh)"
The command will ask you to install:
You can use it on a fresh or existing setup.
When you reopen RStudio after running the script, you’ll see an output like this:
> install.packages("devtools") Available system packages... There are binary versions available but the source versions are later: binary source fs 1.6.1 1.6.2 ... devtools 2.4.3 2.4.5 Do you prefer later versions from sources? (Yes/no/cancel) n
After selecting “n”, to install from binaries, R internally communicates with Ubuntu package manager, and installing ‘devtools’ takes around 10 seconds versus around 5 minutes when building from sources (10 minutes if you need to reinstall because a system dependency was missing).
One advantage of this approach is that it shall satisfy all dependencies (i.e., it will install libpq-dev
when installing RPostgres
).
The script above configures an APT repository to my server pacha.dev, which offers the same stable RStudio version as rstudio.com. The advantage is that when the server is updated and you run apt update
it will offer a newer version that you can install with apt upgrade
.
In other words, the script enables apt install rstudio
.
Yes.
Yes, you can re-trace all the steps I followed here: https://github.com/pachadotdev/r-packages-ubuntu.