Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions working_documents/install_r_macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ Open Terminal.app to run the shell commands in the instructions below:

``` sh
# Intel
export PATH="/opt/R/x86_64/bin:\${PATH}"
export PATH="/opt/R/x86_64/bin:${PATH}"
```

``` sh
# Apple Silicon (M1, M2, ...)
export PATH="/opt/R/arm64/bin:\${PATH}"
export PATH="/opt/R/arm64/bin:${PATH}"
```

This will add the `/opt/R/*/bin` directory to your `PATH` variable
Expand Down