我正在尝试使用this gist中找到的“git all way”方法在ubuntu 11.04上安装npm
在sudo make install
npm
后,我一直收到此错误消息
$ 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
命令会按预期显示node
shell
答案 0 :(得分:7)
你的问题是,当你sudo时,你并没有采购相同的bashrc文件(或任何设置你的PATH和/或NODE_PATH),因此系统找不到节点。
我猜想sudo node
无效。
你需要将你的NODE_PATH导出为@Ken建议,在判断时:
sudo PATH=/path/to/node/bin/dir:$PATH make install
编辑:在下面的评论中使用PATH
答案 1 :(得分:1)
确保在安装npm之前导出NODE_PATH。
export NODE_PATH=/path/to/node/install/dir:/path/to/node/install/dir/lib/node_modules
答案 2 :(得分:0)
看起来您没有安装节点。您首先需要节点 - 然后是节点包管理器(NPM)。
答案 3 :(得分:0)
此page说明了完整的节点安装,包括npm(步骤4)。
答案 4 :(得分:0)
就像有人提到的那样 - 为什么只使用yum
sudo yum install nodejs npm --enablerepo=epel