From 2f97fa2c8ca0cd55b568df235e2c07d2d8e77478 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 26 Sep 2023 11:50:39 +0300 Subject: [PATCH] fixup --- jupyterlab/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyterlab/run.sh b/jupyterlab/run.sh index 541964e..89db045 100755 --- a/jupyterlab/run.sh +++ b/jupyterlab/run.sh @@ -14,7 +14,7 @@ if ! command -v jupyterlab > /dev/null 2>&1; then exit 1 fi # install jupyterlab - pip3 install --upgrade --no-cache-dir --no-warn-script-location --upgrade 'jupyter-server<2.0.0' jupyterlab + pip3 install --upgrade --no-cache-dir --no-warn-script-location jupyterlab echo "🥳 jupyterlab has been installed\n\n" else echo "🥳 jupyterlab is already installed\n\n" @@ -22,4 +22,4 @@ fi echo "👷 Starting jupyterlab in background..." echo "check logs at ${LOG_PATH}" -$HOME/.local/bin/jupyter lab --port=${PORT} --no-browser --ServerApp.token='' --ServerApp.password='' >${LOG_PATH} 2>&1 & +$HOME/.local/bin/jupyter lab --port=${PORT} --no-browser --ServerApp.token='' --ServerApp.password='' --ServerApp.allow_remote_access=true >${LOG_PATH} 2>&1 &