https://github.com/rgcmaack/PLMSS-Replicability-Stamp
Tip revision: 816b2e764878e229265ae15602405304693ad21d authored by Robin Maack on 06 April 2023, 13:17:51 UTC
Adapted docker README.md listing potential errors
Adapted docker README.md listing potential errors
Tip revision: 816b2e7
jupyter.sh
#! /bin/bash
set -e
require_pkgs \
git \
nodejs \
npm
install-pkgs \
python3-pip \
python3-numpy \
python3-pillow \
python3-widgetsnbextension \
jupyter-notebook
pip3 install git+https://github.com/Kitware/ipyparaview.git
jupyter nbextension enable --py --sys-prefix ipyparaview
cat <<EOF > /etc/jupyter/jupyter_notebook_config.py
c.NotebookApp.ip = '0.0.0.0'
c.NotebookApp.allow_remote_access = True
c.NotebookApp.open_browser = False
EOF
