10 lines
187 B
Bash
10 lines
187 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
if [ ! -d .venv ]; then
|
|
python3 -m venv .venv
|
|
fi
|
|
source .venv/bin/activate
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
python main.py
|