11 lines
263 B
Bash
Executable file
11 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
uv lock
|
|
uv sync
|
|
|
|
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
|