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.
123456789101112 |
- if [ ! -e venv ];then
- virtualenv 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=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 venv/bin/pip install -U
- else
- echo Not running in the venv!
- fi
- else
- echo Virtualenv already exists!
- fi
|