From 9fdd48dfcaa469e58ae1106f53cdf3226d380eea Mon Sep 17 00:00:00 2001 From: Ian Jonsen Date: Wed, 1 May 2024 09:47:58 -0300 Subject: [PATCH] tweak --- README.Rmd | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.Rmd b/README.Rmd index dbf00efc..01f3b8b6 100644 --- a/README.Rmd +++ b/README.Rmd @@ -65,11 +65,11 @@ If you don't have compiler tools installed, are uncertain if you do, or have tro When downloading the binary version on a Mac, it is important to right click and choose "Download Linked File As..." so that the file isn't automatically uncompressed. If you have downloaded the file correctly, its extension will be `.tgz`, **not** `.tar`. You can use the following command in the R console to install the file you've just downloaded (where `path_to_file` is wherever you saved the download): ```{r, eval=FALSE} # for Windows -install.packages("path_to_file\aniMotum_1.1-02.zip", +install.packages("path_to_file\aniMotum_1.2-05.zip", repos=NULL, type="win.binary", dependencies = TRUE) # for Mac -install.packages("path_to_file/aniMotum_1.1-02.tgz", +install.packages("path_to_file/aniMotum_1.2-05.tgz", repos=NULL, type="mac.binary", dependencies = TRUE) ``` diff --git a/README.md b/README.md index c9bd7349..f119f651 100644 --- a/README.md +++ b/README.md @@ -98,11 +98,11 @@ command in the R console to install the file you’ve just downloaded ``` r # for Windows -install.packages("path_to_file\aniMotum_1.1-02.zip", +install.packages("path_to_file\aniMotum_1.2-05.zip", repos=NULL, type="win.binary", dependencies = TRUE) # for Mac -install.packages("path_to_file/aniMotum_1.1-02.tgz", +install.packages("path_to_file/aniMotum_1.2-05.tgz", repos=NULL, type="mac.binary", dependencies = TRUE) ```