Skip to content
Snippets Groups Projects
Commit fede1443 authored by calrama's avatar calrama
Browse files

[jupyterhub] Stay with jupyterlab 2 for now

parent b1cada6d
No related branches found
No related tags found
No related merge requests found
...@@ -32,24 +32,28 @@ ENV JUPYTERLAB_SETTINGS_DIR=$HOME/.config/jupyter/lab/user-settings ...@@ -32,24 +32,28 @@ ENV JUPYTERLAB_SETTINGS_DIR=$HOME/.config/jupyter/lab/user-settings
ENV JUPYTERLAB_WORKSPACES_DIR=$HOME/.config/jupyter/lab/workspaces ENV JUPYTERLAB_WORKSPACES_DIR=$HOME/.config/jupyter/lab/workspaces
RUN python${PYTHON_VERSION} -m pip install \ RUN python${PYTHON_VERSION} -m pip install \
jupyterlab \ jupyterlab==2.2.9 \
jupyterhub \ jupyterhub==1.2.2 \
ipympl \ ipympl==0.5.8 \
black \
isort \
&& \ && \
python${PYTHON_VERSION} -m jupyter labextension install \ python${PYTHON_VERSION} -m jupyter labextension install \
@jupyter-widgets/jupyterlab-manager && \ @jupyter-widgets/jupyterlab-manager \
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab && \ && \
python${PYTHON_VERSION} -m jupyter labextension install \ python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab
RUN python${PYTHON_VERSION} -m jupyter labextension install \
jupyter-webrtc \ jupyter-webrtc \
ipyvolume \ ipyvolume \
jupyter-threejs \ jupyter-threejs \
jupyterlab-execute-time \ jupyterlab-execute-time
&& \
RUN python${PYTHON_VERSION} -m pip install jupyterlab_code_formatter==1.3.8 && \
python${PYTHON_VERSION} -m jupyter labextension install @ryantam626/jupyterlab_code_formatter && \ python${PYTHON_VERSION} -m jupyter labextension install @ryantam626/jupyterlab_code_formatter && \
python${PYTHON_VERSION} -m pip install jupyterlab_code_formatter && \ python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab_code_formatter
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab_code_formatter && \
python${PYTHON_VERSION} -m pip install black isort && \ RUN python${PYTHON_VERSION} -m pip install jupyterlab-git && \
python${PYTHON_VERSION} -m pip install jupyterlab-git && \
python${PYTHON_VERSION} -m jupyter lab build python${PYTHON_VERSION} -m jupyter lab build
RUN mkdir -p /usr/local/venv && \ RUN mkdir -p /usr/local/venv && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment