mirror of
https://github.com/simon987/od-database.git
synced 2025-04-10 14:06:45 +00:00
10 lines
187 B
Bash
Executable File
10 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
virtualenv env --download --clear -p python3.7
|
|
source env/bin/activate
|
|
python --version
|
|
|
|
pip install -r requirements.txt
|
|
git submodule update --remote --recursive
|
|
deactivate
|