A bin folder, holding helpfull scripts and commands
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mkvenv 415B

123456789101112
  1. if [ ! -e venv ];then
  2. python3 -m venv venv
  3. if venv/bin/pip -V | grep `pwd -P`; then
  4. venv/bin/pip install --upgrade pip
  5. find . -name requirements.txt | xargs -L 1 venv/bin/pip install -r
  6. venv/bin/pip list --outdated --format=json | jq -r '.[] | .name'|xargs -n1 venv/bin/pip install -U
  7. else
  8. echo Not running in the venv!
  9. fi
  10. else
  11. echo Virtualenv already exists!
  12. fi