尝试使用 npm 安装 Move (movelang.org),但它没有被添加到 #!/usr/bin/env

发布于 2024-11-15 14:41:25 字数 746 浏览 1 评论 0原文

我正在尝试测试 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 技术交流群。

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

发布评论

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

评论(1

第七度阳光i 2024-11-22 14:41:25

我只是遵循 Rasumus Andersson 的相同教程,遇到了同样的问题。

安装 npm 模块时,可以在本地或全局安装它们。
http://blog.nodejs。 org/2011/03/23/npm-1-0-global-vs-local-installation/

当我全局安装 move 时,错误消失了:

sudo npm -g install 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:

sudo npm -g install move
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文