From 8e416035c2ec20840621470d5973508d90918b04 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Sun, 14 Feb 2021 17:32:09 +0100 Subject: [PATCH] Add simple automatic installation script --- install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..80dac9a --- /dev/null +++ b/install.sh @@ -0,0 +1,9 @@ +if ! type "python3" &> /dev/null; then + sudo pacman -S python +fi +if ! type "pip3" &> /dev/null; then + sudo pacman -S python-pip +fi + +pip install pyyaml +python3 -m src