lot_manager/install.sh

29 lines
831 B
Bash

#!/bin/bash
set -e
sudo apt update
sudo apt install supervisor
sudo apt install ffmpeg -y
sudo timedatectl set-timezone Asia/Shanghai
sudo apt install git
git config --global credential.helper store
cd /home/pi
git clone https://gitea.lihaink.cn/xyj/lot_manager.git
cd lot_manager
pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
sudo pip install Adafruit-Blinka
sudo cp /etc/supervisor/supervisord.conf /etc/supervisor/supervisord.conf.bak
sudo cp conf/example/supervisord.conf /etc/supervisor/supervisord.conf
sudo chmod 777 /etc/supervisor/conf.d
python /home/pi/lot_manager/create_db.py
mkdir /home/pi/mp4
cd /home/pi
echo 'lihai_lot_walnutpi_dev_1' | tee device_name
sudo systemctl start supervisor
sudo systemctl enable supervisor
sleep 60
sudo systemctl restart supervisor
supervisorctl reload