Skip to content

Instantly share code, notes, and snippets.

View VasLem's full-sized avatar

Vassilis Lemonidis VasLem

  • UAntwerp
  • Antwerp, Belgium
View GitHub Profile
@VasLem
VasLem / install_devel_r.sh
Created October 30, 2025 10:08
Make devel-R workspace for releasing packages to Bioconductor (Ubuntu)
#!/usr/bin/env bash
# Downloads daily R-devel, installs it in the home directory, makes aliases R-dev and r-dev (for radian) and adds them to ~/.bashrc
MAKE_JOBS={$MAKE_JOBS:4}
set -e
sudo apt-get update
sudo apt-get install -y libreadline-dev texinfo texlive-fonts-extra
cd $HOME
wget https://stat.ethz.ch/R/daily/R-devel.tar.gz
tar -zxvf R-devel.tar.gz
rm R-devel.tar.gz