mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2025-06-15 11:36:03 +00:00
12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /opt/pygentic_ai || exit
|
|
python3.12 -m venv .venv
|
|
source .venv/bin/activate
|
|
python -m pip install -U pip pip-tools setuptools wheel
|
|
for FILE in core_requirements dev_requirements
|
|
do
|
|
pip-compile --resolver=backtracking --upgrade $FILE.in
|
|
done
|
|
pip-sync core_requirements.txt dev_requirements.txt
|