安装npm后,我收到以下错误报告
info it worked if it ends with ok
verbose cli [ 'node', '/home/ash/local/bin/npm' ]
info using npm@1.0.30
info using node@v0.4.12
verbose config file /home/ash/.npmrc
verbose config file /home/ash/local/etc/npmrc
ERR! Error: ENOENT, No such file or directory
ERR! Report this *entire* log at:
ERR! <http://github.com/isaacs/npm/issues>
ERR! or email it to:
ERR! <npm-@googlegroups.com>
ERR!
ERR! System Linux 2.6.38-11-generic
ERR! command "node" "/home/ash/local/bin/npm"
ERR! cwd /home/ash
ERR! node -v v0.4.12
ERR! npm -v 1.0.30
verbose exit [ 1, true ]
我已使用“{3}}中概述的方法使用”git all way way方法“安装了node和npm。但是我更改了npm和node repos的目录位置。
它设置如此
~/
Apps/
Dev/
node/ << node repo
npm/ << npm repo
local/ << default setup location as outlined in the gist
有谁知道这里出了什么问题。
修改
Bash历史记录
$ mkdir ~/local
$ echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc
$ . ~/.bashrc
$ cd Apps/Dev/node
$ ./configure --prefix=~/local
$ make install
$ cd ../npm
$ sudo PATH=~/local/bin:$PATH make install
$ export PATH=~/local/bin:$PATH >> ~/.bashrc
答案 0 :(得分:0)
这是一个类似的问题:
https://github.com/isaacs/npm/issues/1004
事实证明,将“bin”列入其中并不是一个好主意 〜/ .gitignore文件(它将从安装中排除npm / bin 包)
在过去的两年里,我没有触及我的〜/ .gitignore - 结果 它充满了相当愚蠢的东西。春季大扫除〜/ .gitignore 关心这个问题。完成任务,现在是npm v1.0.9-1 成功安装(phew)
另外:你有一个目录“/ home / ash / local / etc / npmrc”吗?