-
Notifications
You must be signed in to change notification settings - Fork 12
Linux Installation
Joe Futrelle edited this page Mar 8, 2017
·
2 revisions
Warning: this installation takes a very long time.
You will need to have superuser privileges or use
sudo
to run theapt-key
andapt-get
commands.
apt-get install -y libnetcdf-dev libssl-dev software-properties-common libcurl4-openssl-dev
This is necessary. The versions of R in the Debian package repositories are not new enough.
apt-key adv --keyserver keys.gnupg.net --recv-key 6212B7B7931C4BB16280BA1306F90DE5381BA480
add-apt-repository 'deb http://cran.rstudio.com/bin/linux/debian jessie-cran3/'
apt-get update
apt-get install r-base
The keyserver and repository for Ubuntu are different, see this link for details
In R:
source("https://bioconductor.org/biocLite.R")
biocLite()
biocLite("devtools")
biocLite("CAMERA")
The last step above will take a very long time, as large packages such as mzR are built from source.
In R:
library(devtools)
install_github("vanooylipidomics/LOBSTAHS")