18 lines
415 B
Bash
Executable file
18 lines
415 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Set environment variables
|
|
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
|
|
|
|
# Set PATH to executables folder under .venv
|
|
#
|
|
# if [ "${UNAMESTR}" = 'Darwin' ]; then
|
|
export PATH=".venv/bin:$PATH"
|
|
else
|
|
export PATH=".venv/Scripts:$PATH"
|
|
fi
|
|
|
|
|
|
jupyter lab
|