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
2 changes: 1 addition & 1 deletion r/vignettes/developers/setup.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ checkout:
```{bash, save=run}
popd # To go back to the root directory of the project, from cpp/build
pushd r
R -e "install.packages('remotes'); remotes::install_deps(dependencies = TRUE)"
R -e 'install.packages("remotes", repos="https://cloud.r-project.org"); remotes::install_deps(dependencies = TRUE)'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to pull this out into the text. For R users / developers they will have a preferred repo source configured already. For example, if someone is on linux + pointed at Posit Public Package manager for binaries, this will override that + be much slower for them.

I've also triggered a devdocs CI job to see if this impacts that too.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah that's fine! I am fine with closing this too. I'll leave this to you 🫡

R CMD INSTALL --no-multiarch .
```

Expand Down
Loading