mirror of
https://github.com/simon987/od-database.git
synced 2025-04-20 19:06:42 +00:00
11 lines
206 B
Bash
Executable File
11 lines
206 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 init
|
|
git submodule update --remote --recursive
|
|
deactivate
|