Skip to content
Snippets Groups Projects
Commit ada1f10b authored by GD's avatar GD
Browse files

re-enable content + requirement installation

parent 2e6ce5bd
No related branches found
No related tags found
No related merge requests found
Pipeline #538 failed
......@@ -4,4 +4,4 @@ title: "Quarto Website Template"
This is a Quarto website using Markdown files to write contents.
<!-- {{< include README.md >}} -->
{{< include README.md >}}
# # manage R packages with pacman R package
# if(!requireNamespace("pacman", quietly = TRUE)) install.packages("pacman")
#
# # requirements
# pkg_list <- c(
# "jsonlite", # gitlab CI complains that the package is missing
# "reticulate", # gitlab CI complains that the package is missing
# "rmarkdown" # gitlab CI complains that the package is missing
# )
#
# # install
# pacman::p_load(char = pkg_list)
\ No newline at end of file
# manage R packages with pacman R package
if(!requireNamespace("pacman", quietly = TRUE)) install.packages("pacman")
# requirements
pkg_list <- c(
"jsonlite", # gitlab CI complains that the package is missing
"reticulate", # gitlab CI complains that the package is missing
"rmarkdown" # gitlab CI complains that the package is missing
)
# install
pacman::p_load(char = pkg_list)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment