-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path02-setup.Rmd
47 lines (26 loc) · 1.42 KB
/
02-setup.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Setup
## Windows users
1. Download and install R: <https://cran.r-project.org/bin/windows/base/R-4.4.1-win.exe>
2. Download and install RStudio: <https://download1.rstudio.org/electron/windows/RStudio-2024.04.2-764.exe>
3. Download and install Git: <https://github.com/git-for-windows/git/releases/download/v2.45.2.windows.1/Git-2.45.2-64-bit.exe>
### Create a GitHub account (sign up)
<a href="https://github.com/" target="_blank">https://github.com/</a>
### Setup Git in RStudio
## Mac users
1. Download and install R: <https://cloud.r-project.org/bin/macosx/big-sur-arm64/base/R-4.4.1-arm64.pkg>
2. Download and install RStudio: <https://download1.rstudio.org/electron/macos/RStudio-2024.04.2-764.dmg>
3. Download and install Homebrew:
i. Option 1: <https://github.com/Homebrew/brew/releases/download/4.3.7/Homebrew-4.3.7.pkg>
OR
ii. Option 2: Paste that in a macOS Terminal:
``` sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
4. Install Git using Homebrew
i. Open the Terminal application. You can find it by searching for "Terminal" in Spotlight (Cmd + Space) or by navigating to `Applications` -\> `Utilities` -\> `Terminal`.
ii. In the Terminal, type the following command and press Enter:
``` sh
brew install git
```
### Create a GitHub account (sign up)
<a href="https://github.com/" target="_blank">https://github.com/</a>