mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
10 lines
166 B
Bash
10 lines
166 B
Bash
|
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
|