linux – 在为node.js安装NPM时出错
作者:互联网
我正在尝试使用this gist中找到的“git all way”方法在ubuntu 11.04上安装npm
在npm上运行sudo make install后我一直收到这个错误
$sudo make install
! [ -d .git ] || git submodule update --init --recursive
node cli.js install -g -f
bash: node: command not found
make: *** [install] Error 127
我知道这对bash有些不对劲,但我对bash并不是很好.
编辑
在终端中运行node命令会按预期启动节点shell
解决方法:
你的问题是,当你sudo时,你并没有采购相同的bashrc文件(或任何设置你的PATH和/或NODE_PATH),因此系统找不到节点.
我猜想sudo节点不起作用.
您需要将@ NODE_PATH导出为@Ken建议,并在推荐时:
sudo PATH=/path/to/node/bin/dir:$PATH make install
编辑:在下面的评论中使用PATH
标签:bash,linux,node-js,npm,ubuntu-11-04 来源: https://codeday.me/bug/20190726/1541653.html