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
Branches
No related tags found
No related merge requests found
......@@ -32,24 +32,28 @@ ENV JUPYTERLAB_SETTINGS_DIR=$HOME/.config/jupyter/lab/user-settings
ENV JUPYTERLAB_WORKSPACES_DIR=$HOME/.config/jupyter/lab/workspaces
RUN python${PYTHON_VERSION} -m pip install \
jupyterlab \
jupyterhub \
ipympl \
jupyterlab==2.2.9 \
jupyterhub==1.2.2 \
ipympl==0.5.8 \
black \
isort \
&& \
python${PYTHON_VERSION} -m jupyter labextension install \
@jupyter-widgets/jupyterlab-manager && \
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab && \
python${PYTHON_VERSION} -m jupyter labextension install \
@jupyter-widgets/jupyterlab-manager \
&& \
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab
RUN python${PYTHON_VERSION} -m jupyter labextension install \
jupyter-webrtc \
ipyvolume \
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 pip install jupyterlab_code_formatter && \
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab_code_formatter && \
python${PYTHON_VERSION} -m pip install black isort && \
python${PYTHON_VERSION} -m pip install jupyterlab-git && \
python${PYTHON_VERSION} -m jupyter serverextension enable --sys-prefix --py jupyterlab_code_formatter
RUN python${PYTHON_VERSION} -m pip install jupyterlab-git && \
python${PYTHON_VERSION} -m jupyter lab build
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