在apt-get安装节点之后安装node.js


25

我试图安装node.js,但我犯了安装错误apt-get install node。哪个不是node.js

我能够node.js在git hub上找到合适的东西,构建并制作所有东西。一切似乎都已安装。但执行时出现此错误node -v

~/node$ node -v
-bash: /usr/sbin/node: No such file or directory

关于如何node -v工作的任何想法?

另外,在ubuntu 10.04上是否有帮助


什么shell,请尝试rehash重新扫描完成目录。另外,如果您位于二进制文件所在的目录中,并且路径中也不存在该目录。尝试./node -v
Doon

是的,我可以通过执行以下操作来运行节点/usr/local/bin/node node -v。tho我希望能够简单地运行它node -v
brian

你有/usr/local/bin你的$PATH?(echo $PATH测试类型)
pqnet 2014年

Answers:


53

看起来您已从/ usr / sbin中删除(卸载)节点,只需确保路径中的/ usr / local / bin并运行

重击: hash -r

zsh: rehash

您的外壳程序应该选择新位置,然后为您运行它。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.