We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 566e2d2 commit 1dc312aCopy full SHA for 1dc312a
datascience-notebook/Dockerfile
@@ -80,17 +80,17 @@ RUN mamba install --quiet --yes \
80
'r-rsqlite' \
81
'r-shiny' \
82
'r-tidyverse' \
83
+ 'rpy2' \
84
'unixodbc' && \
85
mamba clean --all -f -y && \
86
fix-permissions "${CONDA_DIR}" && \
87
fix-permissions "/home/${NB_USER}"
88
-# `rpy2` and `r-tidymodels` are not easy to install under aarch64
89
+# `r-tidymodels` is not easy to install under aarch64
90
RUN set -x && \
91
arch=$(uname -m) && \
92
if [ "${arch}" == "x86_64" ]; then \
93
mamba install --quiet --yes \
- 'rpy2' \
94
'r-tidymodels' && \
95
96
0 commit comments