Node.js:如何安装 NPM

发布于 2024-12-07 07:24:35 字数 1308 浏览 0 评论 0原文

我在 Windows XP 上安装了 cygwin 和 node.exe (0.5.7)。

当我 git clone npm(1.0.30),cd npm,然后“make install”时,有很多 node_modules 克隆。

但是当执行“node cli.js install git+https://github.com/isaac/ronnjs.git”时就停止了。

以下是我的npm-debug.log

信息如果以 ok 结尾则有效

详细 cli [ 'E:\node\node.exe',
详细 cli 'e:\github\npm\cli.js',
详细 cli '缓存',
详细 cli 'clean' ]
使用[电子邮件受保护]
的信息使用 [电子邮件受保护]
详细配置文件 C:\Documents and Settings\zhangchiqing.npmrc
详细配置文件 E:\etc\npmrc
错误!前缀目录不 发现
错误!错误:ENOENT,�����ɹ����ɡ�
错误! 'E:'
错误! 报告整个日志:
错误! http://github.com/isaacs/npm/issues
错误!或通过电子邮件发送至:
错误! [电子邮件受保护]
错误!
错误!系统Windows_NT 5.1.2600
错误!命令“E:\node\node.exe”“e:\github\npm\cli.js”“缓存”“干净”
错误! cwd E:\github\npm
错误!节点-v v0.5.7
犯错! npm -v 1.0.30
详细退出 [ 1, true ]

I have cygwin and node.exe (0.5.7) installed on my window XP.

When I git clone npm(1.0.30), cd npm, then "make install", there are lots of node_modules cloning.

But it stopped when execute "node cli.js install git+https://github.com/isaac/ronnjs.git".

The following is my npm-debug.log.

info it worked if it ends with ok

verbose cli [ 'E:\node\node.exe',
verbose cli
'e:\github\npm\cli.js',
verbose cli 'cache',
verbose cli
'clean' ]
info using [email protected]
info using [email protected]
verbose config file C:\Documents and Settings\zhangchiqing.npmrc
verbose config file E:\etc\npmrc
ERR! prefix directory not
found
ERR! Error: ENOENT, �����ɹ����ɡ�
ERR! 'E:'
ERR!
Report this entire log at:
ERR!
http://github.com/isaacs/npm/issues
ERR! or email it to:
ERR!
[email protected]
ERR!
ERR! System Windows_NT
5.1.2600
ERR! command "E:\node\node.exe" "e:\github\npm\cli.js" "cache" "clean"
ERR! cwd E:\github\npm
ERR! node -v v0.5.7
ERR! npm -v 1.0.30
verbose exit [ 1, true ]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自←快乐 2024-12-14 07:24:35

这在 Ubuntu 中有效。您必须使用旧版本的节点。

sudo apt-get install -y g++ libssl-dev apache2-utils curl git-core
git clone git://github.com/joyent/node.git
cd node
git checkout v0.4.11
./configure
make
sudo make install
node -v
curl https://npmjs.org/install.sh | sudo sh
npm -v

This works in Ubuntu. You have to use older version of node.

sudo apt-get install -y g++ libssl-dev apache2-utils curl git-core
git clone git://github.com/joyent/node.git
cd node
git checkout v0.4.11
./configure
make
sudo make install
node -v
curl https://npmjs.org/install.sh | sudo sh
npm -v
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文