We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 952bac4 commit 6c7eeb7Copy full SHA for 6c7eeb7
1 file changed
template/template.py
@@ -59,7 +59,9 @@ def make_template(
59
'echo "deb https://cloud.r-project.org/bin/linux/debian trixie-cran40/" | sudo tee /etc/apt/sources.list.d/cran.list',
60
]
61
)
62
- .apt_install("r-base=${R_VERSION} r-base-dev")
+ .run_cmd(
63
+ "DEBIAN_FRONTEND=noninteractive DEBCONF_NOWARNINGS=yes apt-get install -y --fix-missing r-base=${R_VERSION} r-base-dev"
64
+ )
65
.run_cmd(
66
[
67
"R -e \"install.packages('IRkernel', repos='https://cloud.r-project.org')\"",
0 commit comments