mirror of
https://github.com/fsecada01/Pygentic-AI.git
synced 2025-06-20 13:46:03 +00:00
13 lines
297 B
Bash
Executable File
13 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
PATH="/root/.local/bin/:$PATH"
|
|
cd /opt/pygentic_ai || exit
|
|
uv venv .venv
|
|
source .venv/bin/activate
|
|
for FILE in core_requirements dev_requirements
|
|
do
|
|
uv pip compile --upgrade $FILE.in -o $FILE.txt
|
|
done
|
|
uv pip sync core_requirements.txt
|