Files
Linux.js---javascript-OS/deps.sh
T
2021-11-29 14:08:48 +01:00

12 lines
246 B
Bash
Executable File

if [ -f /bin/pacman ] # btw
then
sudo pacman -S python gcc make bc
else if [ -f /bin/apt ] #deb / ubuntu
then
sudo apt-get install python3 g++ make
else if [ -f /bin/dnf ] #fedora
then
sudo dnf install python3 gcc-c++ make bc
fi
fi
fi