This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
lset/install.sh

20 lines
612 B
Bash
Raw Normal View History

2022-03-11 17:01:39 -07:00
# check if correct programs are installed
type git npm node python3 pip3
2022-03-11 17:08:02 -07:00
ERROR="$?"
2022-03-11 17:01:39 -07:00
2022-03-11 17:08:02 -07:00
if [[ ERROR -ne 0 ]]; then
2022-03-11 17:01:39 -07:00
echo "install: one or more of the above programs are not installed. the programs in question have lines that end in \"not found\". please make sure that these programs are installed through your package manager"
exit 0
else
echo "install: required programs are installed, continuing"
fi
echo "install: installing requests python package for the source script"
pip3 install --user requests
echo "install: installing tmi node module for the twitch bot"
cd twitch-bot
npm install tmi.js
echo