#!/bin/bash -x # Usage: bash install.sh NODEVER=16.5.0 #14.17.0 # install some packages sudo apt update sudo apt install fswebcam -y # enable pigpiod service sudo systemctl enable pigpiod.service sudo systemctl start pigpiod.service # install node.js (=electron node version) via n (https://github.com/tj/n) curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n sudo bash n $NODEVER # install python code formatter python3 -m pip install black # install desktop entry cp -r ./files/share ~/.local/ # install binary files if exists FILE="./files/binary.zip" if [ -e $FILE ]; then unzip $FILE -d .. else echo 'binary.zip not found. plz install manually.' fi # build ocoge cd .. npm install