耙宝石:安装错误

发布于 2024-10-21 19:09:24 字数 142 浏览 1 评论 0原文

当我运行 rake gems:install 时,出现以下错误:

rake aborted!没有这样的文件要加载 -- aws/s3

我已经安装了 aws 和 s3 gems,所以我不太明白为什么会发生这种情况。

谢谢!

When i run rake gems:install, i get the following error:

rake aborted! no such file to load -- aws/s3

I have installed the aws and the s3 gems so I don't quite understand why this is happening.

Thanks!

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

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

发布评论

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

评论(2

梨涡 2024-10-28 19:09:24

需要指定 lib 参数,因为它与 gem 名称不同。应该是:

config.gem "aws-s3", :lib => "aws/s3"

The lib argument needs to be specified since it is different than the gem name. It should be:

config.gem "aws-s3", :lib => "aws/s3"
南…巷孤猫 2024-10-28 19:09:24

尝试使用 config.gem 'aws-s3' 而不是 config.gem 'aws/s3'

try to config.gem 'aws-s3' instead of config.gem 'aws/s3'

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