由于与其他包名称冲突,Ubuntu上的NodeJS解释器名称(node)被重命名为NodeJS。这是自述。Debian说:

node .js解释器命令的上游名称是“node”。 在Debian中,解释器命令已更改为"nodejs"。 这样做是为了防止名称空间冲突:使用其他命令 在其上游相同的名称,如ax25-node中的“node” 包中。 作为shell命令调用Node.js的脚本必须改为 使用“nodejs”命令。

然而,使用nodejs会搞砸使用npm安装包的过程。软件包安装失败,报错如下:

Sh: 1: node: not found 此失败可能是由于使用了遗留的二进制"node" 更多解释请阅读/usr/share/doc/nodejs/ readmeDebian

我如何让npm理解nodejs已经安装在系统上,但解释器名称不同?


当前回答

Install nvm first using: curl https://raw.githubusercontent.com/creationix/nvm/v0.11.1/install.sh | bash Run command source ~/.profile Now run this and this will show will all installed or other versions of packages: nvm ls-remote Installed packages will be in green. Install whatever version you want: nvm install 6.0.0 Check where is not installed: which node Check current version: node -v n=$(which node); n=${n%/bin/node}; chmod -R 755 $n/bin/*; sudo cp -r $n/{bin,lib,share} /usr/local

其他回答

这是您的节点没有正确安装,首先您需要卸载节点,然后重新安装。 要安装节点,这可能会对您有所帮助 http://array151.com/blog/nodejs-tutorial-and-set-up/

之后,您可以轻松地安装包。为了安装软件包,这可能会帮助你

http://array151.com/blog/npm-node-package-manager/

您的系统无法检测路径节点js二进制。

1.哪个节点

2.然后将节点软链接到nodejs

ln -s [the path of nodejs] /usr/bin/node 

我假设/usr/bin在您的执行路径中。然后你可以在命令行中输入node或npm进行测试,现在一切都可以工作了。

sudo apt-get --purge remove node
sudo apt-get --purge remove nodejs-legacy
sudo apt-get --purge remove nodejs

sudo apt-get install nodejs-legacy
source ~/.profile

将接受的答案与源~/结合起来。概要文件来自已折叠的注释和一些清理命令之前。很可能你还需要sudo apt-get install npm after。

问题不在安装程序 将nodejs替换为node,或者将路径从/usr/bin/nodejs改为/usr/bin/node

node -v  // first check it's install or not
npm -v
sudo apt install npm
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash –
sudo apt-get install nodejs

然后检查

node -v or node –version
npm -v or npm –version

或者你可以去掉包装。锁定json文件/ node_modules然后运行NPM I

我希望它能正常工作

步骤:https://www.geeksforgeeks.org/installation-of-node-js-on-linux/