A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112 |
- if [ ! -e venv ];then
- python3 -m venv venv
- if venv/bin/pip -V | grep `pwd -P`; then
- venv/bin/pip install --upgrade pip
- find . -name requirements.txt | xargs -L 1 venv/bin/pip install -r
- venv/bin/pip list --outdated --format=json | jq -r '.[] | .name'|xargs -n1 venv/bin/pip install -U
- else
- echo Not running in the venv!
- fi
- else
- echo Virtualenv already exists!
- fi
|