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