From 190a47af989c28f5e8d8414ec56faa9cdc4bf41a Mon Sep 17 00:00:00 2001 From: Simon Garnier Date: Thu, 16 May 2019 13:29:56 -0400 Subject: [PATCH] Updates installation instructions --- docs/articles/z1_install.html | 8 +++++--- vignettes/z1_install.Rmd | 10 +++++++++- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/articles/z1_install.html b/docs/articles/z1_install.html index caed18ba..f0b2dd36 100644 --- a/docs/articles/z1_install.html +++ b/docs/articles/z1_install.html @@ -146,14 +146,16 @@

1.2 - Installing Rvision

-

You can install Rvision as follows:

-
devtools::install_github("swarm-lab/Rvision")
+

You can install the latest tested versio of Rvision as follows:

+
devtools::install_github("swarm-lab/Rvision", ref = "v0.3.5")
+

The latest development version (not necessarily testes) can be installed as follows:

+
devtools::install_github("swarm-lab/Rvision")

1.3 - Loading Rvision

-
library(Rvision)
+
library(Rvision)
diff --git a/vignettes/z1_install.Rmd b/vignettes/z1_install.Rmd index d4a75335..f206111b 100644 --- a/vignettes/z1_install.Rmd +++ b/vignettes/z1_install.Rmd @@ -61,7 +61,15 @@ system is missing one of the external dependencies required to compile ## 1.2 - Installing Rvision -You can install [`Rvision`](https://github.com/swarm-lab/Rvision) as follows: +You can install the latest tested versio of [`Rvision`](https://github.com/swarm-lab/Rvision) +as follows: + +```{r, message=FALSE, eval=FALSE} +devtools::install_github("swarm-lab/Rvision", ref = "v0.3.5") +``` + +The latest development version (not necessarily testes) can be installed as +follows: ```{r, message=FALSE, eval=FALSE} devtools::install_github("swarm-lab/Rvision")