8 lines
244 B
Bash
8 lines
244 B
Bash
|
|
#!/bin/bash
|
||
|
|
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
|