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.
12 lines
244 B
12 lines
244 B
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# install python3 if not exist
|
||
|
sudo apt-get install python3
|
||
|
|
||
|
# install the all the necessery packages and requirements
|
||
|
sudo apt-get install python3-pip
|
||
|
sudo pip3 install --upgrade setuptools
|
||
|
sudo pip3 install -r requirements.txt
|
||
|
|
||
|
|