8 lines
99 B
Bash
8 lines
99 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x -e
|
||
|
|
||
|
sudo apt-get install python3 python3-pip
|
||
|
|
||
|
pip3 install -r requirements.txt
|