mirror of
https://github.com/ComradCollective/Comrad
synced 2024-11-03 23:15:33 +00:00
12 lines
216 B
Bash
12 lines
216 B
Bash
#!/bin/bash
|
|
|
|
pyenv install --skip-existing
|
|
|
|
#VENV="${PWD##*/}.venv"
|
|
VENV="venv"
|
|
VENV=${VENV#-}
|
|
python -m venv $VENV
|
|
. $VENV/bin/activate
|
|
# python -m pip install -U pip wheel
|
|
python -m pip install -r requirements.txt
|