mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-13 13:02:56 +00:00
Merge branch 'master' into #1077
This commit is contained in:
@@ -516,3 +516,25 @@ RUN pip install jupyter_contrib_nbextensions && \
|
|||||||
|
|
||||||
Ref:
|
Ref:
|
||||||
[https://github.com/jupyter/docker-stacks/issues/675](https://github.com/jupyter/docker-stacks/issues/675)
|
[https://github.com/jupyter/docker-stacks/issues/675](https://github.com/jupyter/docker-stacks/issues/675)
|
||||||
|
|
||||||
|
## Enable auto-sklearn notebooks
|
||||||
|
|
||||||
|
Using `auto-sklearn` requires `swig`, which the other notebook images lack, so it cant be experimented with. Also, there is no Conda package for `auto-sklearn`.
|
||||||
|
|
||||||
|
```
|
||||||
|
ARG BASE_CONTAINER=jupyter/scipy-notebook
|
||||||
|
FROM jupyter/scipy-notebook:latest
|
||||||
|
|
||||||
|
USER root
|
||||||
|
|
||||||
|
# autosklearn requires swig, which no other image has
|
||||||
|
RUN apt-get update && \
|
||||||
|
apt-get install -y --no-install-recommends swig && \
|
||||||
|
apt-get clean && \
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
|
||||||
|
USER $NB_UID
|
||||||
|
|
||||||
|
RUN pip install --quiet --no-cache-dir auto-sklearn
|
||||||
|
```
|
||||||
|
Reference in New Issue
Block a user