File tree Expand file tree Collapse file tree 2 files changed +2
-22
lines changed Expand file tree Collapse file tree 2 files changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -79,24 +79,14 @@ RUN mamba install --quiet --yes \
79
79
'r-rodbc' \
80
80
'r-rsqlite' \
81
81
'r-shiny' \
82
+ 'r-tidymodels' \
82
83
'r-tidyverse' \
83
84
'rpy2' \
84
85
'unixodbc' && \
85
86
mamba clean --all -f -y && \
86
87
fix-permissions "${CONDA_DIR}" && \
87
88
fix-permissions "/home/${NB_USER}"
88
89
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 \
94
- 'r-tidymodels' && \
95
- mamba clean --all -f -y && \
96
- fix-permissions "${CONDA_DIR}" && \
97
- fix-permissions "/home/${NB_USER}" ; \
98
- fi;
99
-
100
90
# Add Julia packages.
101
91
# Install IJulia as jovyan and then move the kernelspec out
102
92
# to the system share location. Avoids problems with runtime UID change not
Original file line number Diff line number Diff line change @@ -45,19 +45,9 @@ RUN mamba install --quiet --yes \
45
45
'r-rodbc' \
46
46
'r-rsqlite' \
47
47
'r-shiny' \
48
+ 'r-tidymodels' \
48
49
'r-tidyverse' \
49
50
'unixodbc' && \
50
51
mamba clean --all -f -y && \
51
52
fix-permissions "${CONDA_DIR}" && \
52
53
fix-permissions "/home/${NB_USER}"
53
-
54
- # `r-tidymodels` is not easy to install under arm
55
- RUN set -x && \
56
- arch=$(uname -m) && \
57
- if [ "${arch}" == "x86_64" ]; then \
58
- mamba install --quiet --yes \
59
- 'r-tidymodels' && \
60
- mamba clean --all -f -y && \
61
- fix-permissions "${CONDA_DIR}" && \
62
- fix-permissions "/home/${NB_USER}" ; \
63
- fi;
You can’t perform that action at this time.
0 commit comments