mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-23 00:36:36 +00:00
7 lines
208 B
Bash
7 lines
208 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/pip install --upgrade pyinstaller pyinstaller-hooks-contrib |