gifmaker/scripts/venv.sh

9 lines
215 B
Bash
Raw Normal View History

2024-08-02 09:03:03 +00:00
#!/usr/bin/env bash
# This is used to install the python virtual env
root="$(dirname "$(readlink -f "$0")")"
parent="$(dirname "$root")"
cd "$parent"
python -m venv venv &&
venv/bin/pip install -r requirements.txt