mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-18 07:22:57 +00:00
Fix datascience notebook
This commit is contained in:
@@ -74,18 +74,28 @@ RUN mamba install --quiet --yes \
|
|||||||
'r-nycflights13' \
|
'r-nycflights13' \
|
||||||
'r-randomforest' \
|
'r-randomforest' \
|
||||||
'r-rcurl' \
|
'r-rcurl' \
|
||||||
'r-rmarkdown' \
|
|
||||||
'r-rodbc' \
|
'r-rodbc' \
|
||||||
'r-rsqlite' \
|
'r-rsqlite' \
|
||||||
'r-shiny' \
|
'r-shiny' \
|
||||||
'r-tidymodels' \
|
|
||||||
'r-tidyverse' \
|
|
||||||
'rpy2' \
|
'rpy2' \
|
||||||
'unixodbc' && \
|
'unixodbc' && \
|
||||||
mamba clean --all -f -y && \
|
mamba clean --all -f -y && \
|
||||||
fix-permissions "${CONDA_DIR}" && \
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
fix-permissions "/home/${NB_USER}"
|
fix-permissions "/home/${NB_USER}"
|
||||||
|
|
||||||
|
# These packages are not easy to install under arm
|
||||||
|
RUN set -x && \
|
||||||
|
arch=$(uname -m) && \
|
||||||
|
if [ "${arch}" == "x86_64" ]; then \
|
||||||
|
mamba install --quiet --yes \
|
||||||
|
'r-rmarkdown' \
|
||||||
|
'r-tidymodels' \
|
||||||
|
'r-tidyverse' && \
|
||||||
|
mamba clean --all -f -y && \
|
||||||
|
fix-permissions "${CONDA_DIR}" && \
|
||||||
|
fix-permissions "/home/${NB_USER}"; \
|
||||||
|
fi; \
|
||||||
|
|
||||||
# Add Julia packages.
|
# Add Julia packages.
|
||||||
# Install IJulia as jovyan and then move the kernelspec out
|
# Install IJulia as jovyan and then move the kernelspec out
|
||||||
# to the system share location. Avoids problems with runtime UID change not
|
# to the system share location. Avoids problems with runtime UID change not
|
||||||
|
Reference in New Issue
Block a user