耙宝石:安装错误
当我运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
需要指定 lib 参数,因为它与 gem 名称不同。应该是:
The lib argument needs to be specified since it is different than the gem name. It should be:
尝试使用
config.gem 'aws-s3'
而不是config.gem 'aws/s3'
try to
config.gem 'aws-s3'
instead ofconfig.gem 'aws/s3'