14 lines
217 B
Bash
14 lines
217 B
Bash
#!/bin/bash
|
|
|
|
VENV="spadinaistan.venv"
|
|
|
|
python -m pip install pip==22.3 pip-tools==6.9.0 --no-cache
|
|
|
|
if [ ! -d "./$VENV" ]; then
|
|
python -m venv ./$VENV
|
|
fi
|
|
|
|
source ./$VENV/bin/activate
|
|
|
|
|
|
pip-sync ./requirements.txt
|