【发布时间】:2014-12-14 15:24:13
【问题描述】:
我在网上窥探了超过 48 小时,但未能解决这个问题。
当我运行命令“npm install”时,它无法执行安装后脚本“bower install”。因此,我使用以下方法进行了明确的凉亭安装:
$npm install -g bower
$bower install
在此之后,'app/bower_components' 文件夹填充好了。但是,当我再次尝试“npm install”时,同样的问题。无法进一步进行。
我执行了以下操作,但没有成功安装:
- Git 已安装,其路径已添加到 PATH 环境变量中。然后运行“npm install”。甚至重新启动命令提示符以反映 PATH 变量。
- 运行“npm install restify”,但我不知道为什么必须将安装设置为 REST 服务。 我使用了这个,因为这是我遇到的建议之一。
- 在一些帖子中,有人提到这可能是由于防火墙设置造成的。禁用相同并尝试过。
- 将我的项目“angular-phonecat”下的所有文件更改为具有读写权限。通过取消选中整个文件夹内容的“只读”选项来做到这一点。
- 以管理员身份运行 Git Bash 并尝试“npm install”。
请帮我运行这个应用程序。 :(
在我的日志下方查找:
600 info install angular-phonecat@0.0.0
601 info postinstall angular-phonecat@0.0.0
602 verbose unsafe-perm in lifecycle true
603 info angular-phonecat@0.0.0 Failed to exec postinstall script
604 error angular-phonecat@0.0.0 postinstall: `bower install`
604 error spawn ENOENT
605 error Failed at the angular-phonecat@0.0.0 postinstall script.
605 error This is most likely a problem with the angular-phonecat package,
605 error not with npm itself.
605 error Tell the author that this fails on your system:
605 error bower install
605 error You can get their info via:
605 error npm owner ls angular-phonecat
605 error There is likely additional logging output above.
606 error System Windows_NT 6.2.9200
607 error command "g:\\Workspace\\AngularProjects\\angular-phonecat\\node.exe" "g:\\Workspace\\AngularProjects\\angular-phonecat\\node_modules\\npm\\bin\\npm-cli.js" "install"
608 error cwd g:\Workspace\AngularProjects\angular-phonecat
609 error node -v v0.10.32
610 error npm -v 1.4.28
611 error syscall spawn
612 error code ELIFECYCLE
613 error errno ENOENT
614 verbose exit [ 1, true ]
【问题讨论】: