From ab6ff9b2c30c7f8c284ddd87186bbcb8efa73e59 Mon Sep 17 00:00:00 2001 From: Kristi Liu <48770663+kristi-sara@users.noreply.github.com> Date: Fri, 17 Nov 2023 13:45:12 -0800 Subject: [PATCH] update quarto version and remove here package --- setup.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.md b/setup.md index 88d0a0e6..f733b146 100644 --- a/setup.md +++ b/setup.md @@ -9,7 +9,7 @@ We will need the following account(s) and software for this workshop: - Create Github account (use existing or create new account) - Install Git - Install R & RStudio (Two separate installations: if you are on a windows device, you may need Rtools) -- Install Quarto CLI (version 1.3) +- Install Quarto CLI (version 1.3.45) {% include install_instructions/github.html %} @@ -55,7 +55,7 @@ Your output should be: ~~~ quarto --version -1.3.361 +1.3.45 ~~~ {: .output} @@ -84,7 +84,6 @@ We will be covering the purpose of using packages and recap different ways to in install.packages("tidyverse") install.packages("BayesFactor") install.packages("patchwork") - install.packages("here") ~~~ {: .source} @@ -93,7 +92,7 @@ We will be covering the purpose of using packages and recap different ways to in ~~~ - install.packages(c("bookdown", "tidyverse", "BayesFactor", "patchwork", "here")) + install.packages(c("bookdown", "tidyverse", "BayesFactor", "patchwork")) ~~~ {: .source}