nodejs from source

This commit is contained in:
Marc
2021-11-30 10:57:05 +01:00
parent 952edb4270
commit 3781c5108b
8 changed files with 62 additions and 23 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
if [ -f /bin/pacman ] # btw
then
sudo pacman -S python gcc make bc
sudo pacman -S python gcc make bc unzip wget sudo binutils nasm
else if [ -f /bin/apt ] #deb / ubuntu
then
sudo apt-get install python3 g++ make
sudo apt-get install python3 g++ make bc unzip wget sudo
else if [ -f /bin/dnf ] #fedora
then
sudo dnf install python3 gcc-c++ make bc
sudo dnf install python3 gcc-c++ make bc unzip wget sudo
fi
fi
fi