14 lines
523 B
Bash
Executable File
14 lines
523 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "System Packages Installation: # $0" 1>&2
|
|
echo
|
|
|
|
sudo apt update
|
|
#sudo apt upgrade
|
|
|
|
sudo apt install build-essential openssl git python3-dev python3-pip python3-venv redis supervisor
|
|
sudo apt install default-libmysqlclient-dev libpq-dev i2c-tools python3-smbus
|
|
sudo apt install python3-dev python3-setuptools libjpeg-dev libfreetype6-dev zlib1g-dev liblcms2-dev libopenjp2-7-dev libtiff5-dev
|
|
git@github.com:deunix-educ/django-relay-controller.git
|
|
https://github.com/deunix-educ/django-relay-controller.git
|