A bin folder, holding helpfull scripts and commands
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- if [ ! -e venv ];then
- virtualenv venv
- source venv/bin/activate
- if pip -V | grep `pwd -P`; then
- pip install --upgrade pip
- pip_upgrade_all
- find . -name requirements.txt | xargs -L 1 pip install -r
- deactivate
- else
- echo Could not activate venv!
- fi
- else
- echo Virtualenv already exists!
- fi
|