CentOS 7 安装 Node.js 和 npm
添加NodeSource到yum源
1 | curl -fsSL https://rpm.nodesource.com/setup_16.x | sudo bash - |
安装Node.js和npm
1 | sudo yum install nodejs |
验证(打印安装的版本)
1 | node --version |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Hi, likeqc!
评论
1 | curl -fsSL https://rpm.nodesource.com/setup_16.x | sudo bash - |
1 | sudo yum install nodejs |
1 | node --version |