mirror of
https://github.com/NotAShelf/air-quality-monitor.git
synced 2024-11-22 21:31:11 +00:00
14 lines
279 B
Bash
14 lines
279 B
Bash
#!/bin/bash
|
|
# install.sh
|
|
|
|
cd ../
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3 python3-pip python3-dev libffi-dev libssl-dev
|
|
|
|
curl -sSL https://get.docker.com | sh
|
|
sudo usermod -aG docker ${USER}
|
|
sudo pip3 install docker-compose
|
|
sudo systemctl enable docker
|
|
newgrp docker
|