“Aktualisieren Sie NodeJS CentOS” Code-Antworten

Installieren Sie den neuesten Knoten auf CentOS

yum install -y gcc-c++ make 
# v16
curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash -
# v14
# curl -sL https://rpm.nodesource.com/setup_14.x | sudo -E bash - 
yum install nodejs
node -v
Lazy Lizard

Aktualisieren Sie NodeJS CentOS

$ curl -sL https://rpm.nodesource.com/setup_12.x | bash -
sudo yum install nodejs
f0ru0l0rd

CentOS Upgrade Nodejs

# If you don't have an existing version:
sudo yum install nodejs


# If you have installed:
# Option 1
curl -sL https://rpm.nodesource.com/setup_16.x | bash -
sudo yum install nodejs

# Option 2 (I have issues sometimes with Option 1)
wget http://nodejs.org/dist/v16.14.2/node-v16.14.2.tar.gz
tar xzvf node-v* && cd node-v*
sudo yum install gcc gcc-c++
./configure
make
sudo make install
Benja

Ähnliche Antworten wie “Aktualisieren Sie NodeJS CentOS”

Fragen ähnlich wie “Aktualisieren Sie NodeJS CentOS”

Weitere verwandte Antworten zu “Aktualisieren Sie NodeJS CentOS” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen