mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-04-17 00:32:27 +00:00
Add simple automatic installation script
This commit is contained in:
parent
db7409b91b
commit
8e416035c2
1 changed files with 9 additions and 0 deletions
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…
Add table
Reference in a new issue