在新系统上 sudo apt install nodejs 不起作用

在新系统上 sudo apt install nodejs 不起作用

在此处输入图片描述

我想安装节点版本 10.16.3

  • 所以我尝试使用 nvm 安装但我的 node js 显示此错误
Command 'nodejs' not found, but can be installed with:

sudo apt install nodejs

我已经安装了 nodejs 仍然收到此错误

答案1

您已安装 NodeJS。屏幕截图上的以下输出表明了这一点:

nodejs is already the newest version (12.22.1-1nodesource1).

其可执行文件是node并且不是nodejs

因此,要检查其版本,您必须使用以下命令:

node --version

获得类似的输出

v12.22.1

答案2

尝试

sudo apt remove nodejs

然后

sudo apt update
sudo apt install nodejs

相关内容