mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 08:46:36 +00:00
8 lines
184 B
Bash
8 lines
184 B
Bash
if [ ! -d "venv" ]; then
|
|
python3 -m venv venv
|
|
fi
|
|
|
|
venv/bin/python -m pip install --upgrade pip
|
|
venv/bin/pip install -r requirements.txt
|
|
venv/bin/python annotation_queue_handler.py
|