Update npm_setup.sh

This commit is contained in:
tteckster 2022-02-01 10:05:00 -05:00 committed by GitHub
parent 90d65f47c1
commit 81b2991fea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

View File

@ -34,7 +34,19 @@ apt-get -qqy upgrade &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m" echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m"
echo "fs.file-max = 65535" > /etc/sysctl.conf echo "fs.file-max = 65535" > /etc/sysctl.conf
apt-get update &>/dev/null apt-get update &>/dev/null
apt-get -y install --no-install-recommends sudo curl wget gnupg openssl ca-certificates apache2-utils logrotate build-essential python3-dev git lsb-release &>/dev/null apt-get -y install \
sudo \
curl \
wget \
gnupg \
openssl \
ca-certificates \
apache2-utils \
logrotate \
build-essential \
python3-dev \
git \
lsb-release &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Python... \e[0m" echo -e "${CHECKMARK} \e[1;92m Installing Python... \e[0m"
apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null apt-get install -y -q --no-install-recommends python3 python3-pip python3-venv &>/dev/null