yum 安装nodejs
时间: 2023-11-04 19:59:29 浏览: 104
安装 nodejs
在CentOS下,可以使用yum安装Node.js。以下是安装步骤:
1. 首先,确保系统已经安装了wget命令,如果没有安装可以使用以下命令安装:sudo yum install -y wget
2. 然后,使用wget命令下载Node.js的安装脚本:wget https://rpm.nodesource.com/setup_10.x
3. 运行安装脚本:sudo bash setup_10.x
4. 安装Node.js:sudo yum -y install nodejs
阅读全文