-
Notifications
You must be signed in to change notification settings - Fork 1
/
jupyterlab
executable file
·26 lines (26 loc) · 972 Bytes
/
jupyterlab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/zsh
# -----------------------------------------------------------------------------
# Constants
# -----------------------------------------------------------------------------
ABSPATH=$(readlink -f $0)
ABSDIR=$(dirname $ABSPATH)
# -----------------------------------------------------------------------------
#
#
#
# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------
source "$ABSDIR/chat-bot-api/config.conf"
source "$CONDA_PATH/etc/profile.d/conda.sh"
# -----------------------------------------------------------------------------
#
#
#
# -----------------------------------------------------------------------------
# Main
# -----------------------------------------------------------------------------
echo "ENV: $CONDA_ENV"
conda activate $CONDA_ENV
jupyter lab
# -----------------------------------------------------------------------------