在Ubuntu上安装Node.js,可以按照以下步骤进行:
1、更新系统软件包列表
sudo aptget update
2、安装curl(用于从NodeSource下载Node.js)
sudo aptget install curl
3、添加NodeSource官方APT仓库
curl sL https://deb.nodesource.com/setup_14.x | sudo E bash
这里的setup_14.x
表示安装Node.js的14.x版本,你可以根据需要替换为其他版本。
4、再次更新系统软件包列表
sudo aptget update
5、安装Node.js
sudo aptget install nodejs
6、验证Node.js和npm是否安装成功
node v npm v
如果能看到对应的版本号,说明安装成功。