npm 在 ubuntu 10.04 下不安装模块
我安装 NPM 时没有任何问题,但每当我尝试安装模块时,终端就会挂起并且不执行任何操作(至少看起来它什么都不执行......)
我等了 5 分钟,但没有任何变化。
编辑
使用节点版本 0.5.4-pre 和 npm 1.0.23
I installed NPM without problems but whenever I try to install a module the terminal just hangs and does nothing (at least it seems like it does nothing ...)
I waited for 5 mins but nothing changes.
edit
using node version 0.5.4-pre and npm 1.0.23
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解决这个问题的最佳方法是:
1) 删除节点目录
2) 获取分支 0.4
3) 编译并安装它 (sudo)
4) 重新下载并安装安装npm,这很重要!
5) 退出 sudo,重建搜索索引并安装模块
Best way to get around this is:
1) Remove your node directory
2) get branch 0.4
3) Compile and install it (sudo)
4) Re-download & install npm, this is important!
5) Exit sudo, rebuild your search index and install your module
降级到节点 0.4.10,现在一切正常。
downgraded to node 0.4.10 and now everything is working alright.
重新安装nodejs和npm后解决了同样的问题。然后我编写简单安装shell脚本来自动安装模块。据我所知,不建议从根运行节点。
The same problem was solved after reinstall nodejs and npm. Then I write simple installation shell script to automatic installation with modules. And as i know it's not recomended to run node from root.