Add simple automatic installation script

This commit is contained in:
ItsDrike 2021-02-14 17:32:09 +01:00
parent db7409b91b
commit 8e416035c2
No known key found for this signature in database
GPG key ID: 252D306F545351FC

9
install.sh Normal file
View file

@ -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