2021-02-06 10:40:52 +00:00
|
|
|
#!/bin/bash -x
|
|
|
|
# Usage: bash install.sh
|
|
|
|
|
2021-10-22 14:33:59 +00:00
|
|
|
NODEVER=16.5.0
|
|
|
|
#14.17.0
|
2021-09-09 08:41:39 +00:00
|
|
|
|
2021-10-08 13:30:52 +00:00
|
|
|
# install some packages
|
2021-09-09 08:41:39 +00:00
|
|
|
sudo apt update
|
2021-10-08 13:30:52 +00:00
|
|
|
sudo apt install fswebcam -y
|
|
|
|
# enable pigpiod service
|
|
|
|
sudo systemctl enable pigpiod.service
|
|
|
|
sudo systemctl start pigpiod.service
|
2021-09-09 08:41:39 +00:00
|
|
|
|
2021-02-06 10:40:52 +00:00
|
|
|
# install node.js (=electron node version) via n (https://github.com/tj/n)
|
2021-05-22 07:59:32 +00:00
|
|
|
curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n
|
2021-10-08 13:30:52 +00:00
|
|
|
sudo bash n $NODEVER
|
2021-08-28 14:28:26 +00:00
|
|
|
# install python code formatter
|
2021-08-29 14:44:58 +00:00
|
|
|
python3 -m pip install black
|
2021-02-06 10:40:52 +00:00
|
|
|
# install desktop entry
|
|
|
|
cp -r ./files/share ~/.local/
|
|
|
|
# install binary files if exists
|
2021-02-06 12:09:25 +00:00
|
|
|
FILE="./files/binary.zip"
|
2021-02-06 10:40:52 +00:00
|
|
|
if [ -e $FILE ]; then
|
|
|
|
unzip $FILE -d ..
|
|
|
|
else
|
|
|
|
echo 'binary.zip not found. plz install manually.'
|
|
|
|
fi
|
|
|
|
|
|
|
|
# build ocoge
|
|
|
|
cd ..
|
|
|
|
npm install
|