dotfiles/install.sh
2021-03-09 22:18:35 +01:00

10 lines
179 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 -r requirements.txt
python3 -m src