mirror of
https://github.com/simon987/task_tracker_drone.git
synced 2025-04-10 14:06:46 +00:00
8 lines
144 B
Bash
Executable File
8 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
|
|
virtualenv env --download --clear -p python3.7
|
|
source env/bin/activate
|
|
python --version
|
|
pip install -r requirements.txt
|
|
deactivate
|