我是 Linux 新手,想使用以下命令安装节点:
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install nodejs
并且 angular 8 需要node 12.x
我删除了节点sudo apt-get purge --auto-remove nodejs
并运行下面的命令,但它安装了错误的版本
sudo apt-get install curl curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - sudo apt-get install nodejs
答案1
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt install nodejs
检查:
$ node --version
输出:v10.16.3检查:
$ npm --version
输出:6.9.0
答案2
答案3
尝试以下命令
须藤 lts
如果你想安装更新版本然后运行命令
安装 n16.15.1
这对我来说很好。