Skip to content

Update install_r_macos.md #57

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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