2025-10-20 03:37:17 +00:00
|
|
|
#!/bin/bash
|
2025-10-22 15:09:18 +00:00
|
|
|
#
|
|
|
|
|
uv lock
|
|
|
|
|
uv sync
|
|
|
|
|
|
2025-10-20 03:37:17 +00:00
|
|
|
export JUPYTERLAB_SETTINGS_DIR="${PWD}/.jupyter/lab/user-settings"
|
|
|
|
|
export JUPYTER_DATA_DIR="${PWD}/.jupyter/data"
|
|
|
|
|
export JUPYTER_CONFIG_DIR="${PWD}/.jupyter"
|
|
|
|
|
export VIRTUAL_ENV_PROMPT=.venv
|
|
|
|
|
export PATH=".venv/bin:$PATH"
|
|
|
|
|
jupyter lab
|