|
|
|
@ -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 &
|
|
|
|
|