Skip to content

Commit 1dc312a

Browse files
authored
Install rpy2 on aarch64 as well (#1871)
1 parent 566e2d2 commit 1dc312a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datascience-notebook/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,17 @@ RUN mamba install --quiet --yes \
8080
'r-rsqlite' \
8181
'r-shiny' \
8282
'r-tidyverse' \
83+
'rpy2' \
8384
'unixodbc' && \
8485
mamba clean --all -f -y && \
8586
fix-permissions "${CONDA_DIR}" && \
8687
fix-permissions "/home/${NB_USER}"
8788

88-
# `rpy2` and `r-tidymodels` are not easy to install under aarch64
89+
# `r-tidymodels` is not easy to install under aarch64
8990
RUN set -x && \
9091
arch=$(uname -m) && \
9192
if [ "${arch}" == "x86_64" ]; then \
9293
mamba install --quiet --yes \
93-
'rpy2' \
9494
'r-tidymodels' && \
9595
mamba clean --all -f -y && \
9696
fix-permissions "${CONDA_DIR}" && \

0 commit comments

Comments
 (0)