mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 06:56:34 +00:00
96056f53ad
add install script
8 lines
242 B
Bash
8 lines
242 B
Bash
echo install python and dependencies
|
|
if not exist venv (
|
|
python -m venv venv
|
|
)
|
|
|
|
venv/bin/python -m pip install --upgrade pip
|
|
venv/bin/pip install -r requirements.txt
|
|
venv\Scripts\pip install --upgrade pyinstaller pyinstaller-hooks-contrib |