mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-01 21:40:32 +00:00
11 lines
204 B
Bash
11 lines
204 B
Bash
#!/bin/bash
|
|
|
|
pyenv install --skip-existing
|
|
|
|
VENV="${PWD##*/}.venv"
|
|
VENV=${VENV#-}
|
|
python3 -m venv $VENV
|
|
. $VENV/bin/activate
|
|
python3 -m pip install -U pip wheel
|
|
python3 -m pip install -r requirements.txt
|