From 8dad39f0951be76f5ae568137c20cc544db7c215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20BARCZA?= Date: Wed, 8 Feb 2023 10:51:40 +0100 Subject: [PATCH] Update README.org --- README.org | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.org b/README.org index 2fd5c7c..646b3f8 100644 --- a/README.org +++ b/README.org @@ -21,16 +21,22 @@ You can install the RBBGCMuso package in several ways depending on the operating If you would like to install the RBBGCMuso package from Source, you have two options. a) Clone this repository, then build and run the package (further information is available here: [[http://kbroman.org/pkg_primer/pages/build.html][package build and install]]) or -b) Install the devtools package first (recommended): +b) Install the remotes package first (recommended): #+BEGIN_SRC R :eval no -install.packages("devtools") +install.packages("remotes") #+END_SRC Then copy the following line into the R session and execute it: #+BEGIN_SRC R :eval no -devtools::install_github("hollorol/RBBGCMuso/RBBGCMuso",upgrade="never") +remotes::install_github("hollorol/RBBGCMuso/RBBGCMuso",upgrade="never") #+END_SRC +We provide support to Biome-BGCMuSo v7 via a separate branch (temporary solution that will eventually be merged into the master branch in the future): +#+BEGIN_SRC R :eval no +remotes::install_github("hollorol/RBBGCMuso/RBBGCMuso",ref="version7",upgrade="never") +#+END_SRC + + If you use Linux, with Debian (version 8+) you can automate the whole installation process with curl via copying the following line into the Linux terminal: #+BEGIN_SRC bash :eval no bash <(curl -s https://raw.githubusercontent.com/hollorol/RBBGCMuso/Documentation/debianInstaller.sh)