尝试使用 npm 安装 Move (movelang.org),但它没有被添加到 #!/usr/bin/env
我正在尝试测试 Rasumus Andersson 的 ec2-webapp 但它都是在 Move 中编写的我遇到麻烦了让 Move 正常工作。
我按照 说明 使用“npm install move”安装了它,但是当我尝试运行 Move 时脚本(如 ec2-webapp/bin/myapp-httpd/mv),我收到错误:
/usr/bin/env: move: No such file or directory
当我将该脚本中的 shebang 更改为移动安装的直接链接时(#!/var/ec2-webapp/src/node/node_modules/move/bin)。
-bash: bin/myapp-httpd.mv: /var/ec2-webapp/src/node/node_modules/move/bin: bad interpreter: Permission denied
我不确定如何正确进入环境,有什么建议吗?
I'm trying to test Rasumus Andersson's ec2-webapp but it is all scripted in Move and I'm having trouble getting Move working.
I installed it with 'npm install move' per the instructions, but when I try to run a Move script (like ec2-webapp/bin/myapp-httpd/mv), I get the error:
/usr/bin/env: move: No such file or directory
When I change the shebang in that script to a direct link to the move installation (#!/var/ec2-webapp/src/node/node_modules/move/bin).
-bash: bin/myapp-httpd.mv: /var/ec2-webapp/src/node/node_modules/move/bin: bad interpreter: Permission denied
I'm not sure how to get Move into env correctly, any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我只是遵循 Rasumus Andersson 的相同教程,遇到了同样的问题。
安装 npm 模块时,可以在本地或全局安装它们。
http://blog.nodejs。 org/2011/03/23/npm-1-0-global-vs-local-installation/
当我全局安装 move 时,错误消失了:
I was just following the same tutorial by Rasumus Andersson and ran into the very same problem.
When you install npm modules, you can install them locally or globally.
http://blog.nodejs.org/2011/03/23/npm-1-0-global-vs-local-installation/
When I installed move globally, the error went away: