agwefgw / start.sh
chaowenguo's picture
Upload 129 files
5690e11 verified
raw
history blame contribute delete
285 Bytes
#!/usr/bin/env bash
# Directory of the script
SCRIPT_DIR="$(cd -- $(dirname -- "$0") && pwd)"
DIR="$(PWD)"
if [ -d "$SCRIPT_DIR/venv" ]; then
source "$SCRIPT_DIR/venv/bin/activate" || exit 1
else
echo "venv folder does not exist. Not activating..."
fi
streamlit run gui.py