Set-Up the ghqc Ecosystem
1. Install ghqc
Section titled “1. Install ghqc”Installation steps are provided for both base R and rv, A2-Ai’s package manager.
-
Add a repository containing
ghqcandghqc.appto thereposoptionoptions("repos" = c("ghqc-eco" = "https://prism.dev.a2-ai.cloud/rpkgs/ghqc-eco/v3",getOption("repos"))) -
Install the package
We recommend installing all of the dependencies to install
pakandgert, but it is not required.install.packages("ghqc", dependencies = TRUE)install.packages("ghqc")
-
Add the following to your
rproject.tomlrproject.toml [project]name = "ghqc example"r_version = "4.5"repositories = [{ alias = "ghqc-eco", url = "https://prism.dev.a2-ai.cloud/rpkgs/ghqc-eco/v3" },{ alias = "PRISM", url = "https://prism.a2-ai.cloud/rpkgs/nimbus/2025.09" },]dependencies = [{ name = "ghqc", install_suggestions = true },] -
Sync the project
Terminal window rv sync -
Restart R After installing
ghqc, users should restart their R session to have the changes propagate into their R session.
2. Set-up Configuration Repository and Install ghqc.app
Section titled “2. Set-up Configuration Repository and Install ghqc.app”Run the following command to clone the example configuration repository
and install ghqc.app and its dependencies to the default directory.
ghqc::ghqc_example_setup()