From 5f603fddc3607e8a3aa04af7ac2ebcb1f63dc865 Mon Sep 17 00:00:00 2001 From: saundersp Date: Mon, 22 Jan 2024 21:50:35 +0100 Subject: [PATCH] Added greater iopub_data_rate_limit --- helper.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helper.sh b/helper.sh index 3cef3f3..82556df 100755 --- a/helper.sh +++ b/helper.sh @@ -47,8 +47,8 @@ case "$1" in echo '{ "theme": "JupyterLab Dark" }' > "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/apputils-extension/themes.jupyterlab-settings echo '{ "fetchNews": "false" }' > "$JUPYTERLAB_SETTINGS_DIR"/@jupyterlab/apputils-extension/notification.jupyterlab-settings enable_venv "$2" - python -m pip install --timeout 60 --retries 9999999999999999 -U pip setuptools - pip install --timeout 60 --retries 9999999999999999 -r requirements.txt + python -m pip install --timeout 60 --retries 1e16 -U pip setuptools + pip install --timeout 60 --retries 1e16 -r requirements.txt ;; k|-k|kernel|--kernel) @@ -75,7 +75,7 @@ case "$1" in l|-l|launch|--launch) enable_venv "$2" if command -v jupyter >> /dev/null; then - exec jupyter lab + exec jupyter lab --ServerApp.iopub_data_rate_limit 1e16 else echo "Jupyter lab isn't installed" exit 1