From 4dee4b6fc1de46e0f417bc500fc3ebb18bdceb28 Mon Sep 17 00:00:00 2001 From: junos Date: Wed, 15 Dec 2021 20:21:59 +0100 Subject: [PATCH] Add info about updating RAPIDS. --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2738dd8..99972cc 100644 --- a/README.md +++ b/README.md @@ -142,4 +142,20 @@ If this still fails, `dos2unix` can be used to change them. ### System has not been booted with systemd as init system (PID 1) -See [the installation issue above](#Timezone-environment-variable-for-tidyverse-(relevant-for-WSL2)). \ No newline at end of file +See [the installation issue above](#Timezone-environment-variable-for-tidyverse-(relevant-for-WSL2)). + +## Update RAPIDS + +To update RAPIDS, first pull and merge [origin]( https://github.com/carissalow/rapids), such as with: + +```commandline +git fetch --progress "origin" refs/heads/master +git merge --no-ff origin/master +``` + +Next, update the conda and R virtual environment. + +```bash +R -e 'renv::restore(repos = c(CRAN = "https://packagemanager.rstudio.com/all/__linux__/focal/latest"))' +``` +