mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Add simple automatic installation script
This commit is contained in:
parent
db7409b91b
commit
8e416035c2
9
install.sh
Normal file
9
install.sh
Normal 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
|
Loading…
Reference in a new issue