Featured image of post 在 Linux 上安装 Node.js

在 Linux 上安装 Node.js

方式一:yum 安装

1
2
3
# 其中 setup_7.x 中的 7.x 为要安装的版本
wget -qO- https://rpm.nodesource.com/setup_7.x | bash -
yum install -y nodejs

方式二:编译安装

1
2
3
4
5
wget https://npm.taobao.org/mirrors/node/latest/node-v7.4.0-linux-x64.tar.xz
tar xvf node-v7.4.0-linux-x64.tar.xz
cd node-v7.4.0-linux-x64.tar.xz
./configure
make && make install
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计