捆绑安装不起作用

发布于 2024-12-27 09:24:56 字数 202 浏览 0 评论 0原文

我正在尝试将所有 gem 安装在项目的 gemFile 中,但是当我输入: sudo bundle install

但我收到此错误: 在您的 Gemfile 中列出的任何 gem 源中都找不到 gem 'llrp_connector (>= 0)' ruby​​。

有人有想法吗?

I'm trying to install all gems in a gemFile of a project, but when i typed:
sudo bundle install

but i got this error:
Could not find gem 'llrp_connector (>= 0)' ruby in any of the gem sources listed in your Gemfile.

Anyone have an idea ?

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

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

发布评论

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

评论(1

呆头 2025-01-03 09:24:56

您是否已将这一行添加到 Gemfile 的顶部?

source 'http://rubygems.org'

编辑

正如 Dylan 所说,RubyGems.org 上不存在这个 gem。如果它是托管在(私有)存储库上的 gem,请按以下方式添加:

gem "nokogiri", :git => "git://github.com/tenderlove/nokogiri.git", :branch => "1.4"

Have you added this line on the top of your Gemfile?

source 'http://rubygems.org'

EDIT

As Dylan said, this gem doesn't exist on RubyGems.org. If it is a gem hosted on a (private) repository, add it this way :

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