宝石“ jekyll”的兼容捆绑版本]]

问题描述 投票:0回答:2

我正在尝试使用Jekyll设置github页面,当前它正在使用minima主题

,并且我想将其更改为jekyll-theme-hacker

所以,我去了Gemfile,我加了

gem "github-pages", group:jekyll_plugins

在]下>

gem "minima", "~>2.5"

保存后,我做了

bundle install

但是这给了我错误。

Bundler could not find compatible versions for gem "jekyll":
  In snapshot (Gemfile.lock):
    jekyll (= 4.0.0)

  In Gemfile:
    jekyll (~> 4.0.0)

    jekyll-theme-hacker was resolved to 0.0.4, which depends on
      jekyll (~> 3.3)

Running `bundle update` will rebuild your snapshot from scratch, using
only
the gems in your Gemfile, which may resolve the conflict.

我对Jekyll和Programming非常陌生,我想知道为什么会这样。

据我所知,Bundler是一个Gem管理工具,Gem代表用于ruby编程语言的库或模块。所以我想做的就是尝试为我的新主题安装所有必要的东西。

但是捆绑程序找不到与宝石“ jekyll”兼容的版本。这到底是什么意思?我是否需要使用jekyll的其他依赖关系才能使用新主题?如果是这样,我该怎么办?

非常感谢。

----编辑----这就是我的Gemfile.lock

看起来像的样子
GEM
  remote: https://rubygems.org/
  specs:
    addressable (2.7.0)
      public_suffix (>= 2.0.2, < 5.0)
    colorator (1.1.0)
    concurrent-ruby (1.1.5)
    em-websocket (0.5.1)
      eventmachine (>= 0.12.9)
      http_parser.rb (~> 0.6.0)
    eventmachine (1.2.7)
    ffi (1.11.1)
    forwardable-extended (2.6.0)
    http_parser.rb (0.6.0)
    i18n (1.7.0)
      concurrent-ruby (~> 1.0)
    jekyll (4.0.0)
      addressable (~> 2.4)
      colorator (~> 1.0)
      em-websocket (~> 0.5)
      i18n (>= 0.9.5, < 2)
      jekyll-sass-converter (~> 2.0)
      jekyll-watch (~> 2.0)
      kramdown (~> 2.1)
      kramdown-parser-gfm (~> 1.0)
      liquid (~> 4.0)
      mercenary (~> 0.3.3)
      pathutil (~> 0.9)
      rouge (~> 3.0)
      safe_yaml (~> 1.0)
      terminal-table (~> 1.8)
    jekyll-feed (0.12.1)
      jekyll (>= 3.7, < 5.0)
    jekyll-sass-converter (2.0.1)
      sassc (> 2.0.1, < 3.0)
    jekyll-seo-tag (2.6.1)
      jekyll (>= 3.3, < 5.0)
    jekyll-watch (2.2.1)
      listen (~> 3.0)
    kramdown (2.1.0)
    kramdown-parser-gfm (1.1.0)
      kramdown (~> 2.0)
    liquid (4.0.3)
    listen (3.2.0)
      rb-fsevent (~> 0.10, >= 0.10.3)
      rb-inotify (~> 0.9, >= 0.9.10)
    mercenary (0.3.6)
    minima (2.5.1)
      jekyll (>= 3.5, < 5.0)
      jekyll-feed (~> 0.9)
      jekyll-seo-tag (~> 2.1)
    pathutil (0.16.2)
      forwardable-extended (~> 2.6)
    public_suffix (4.0.1)
    rb-fsevent (0.10.3)
    rb-inotify (0.10.0)
      ffi (~> 1.0)
    rouge (3.11.1)
    safe_yaml (1.0.5)
    sassc (2.2.1)
      ffi (~> 1.9)
    terminal-table (1.8.0)
      unicode-display_width (~> 1.1, >= 1.1.1)
    thread_safe (0.3.6)
    tzinfo (1.2.5)
      thread_safe (~> 0.1)
    tzinfo-data (1.2019.3)
      tzinfo (>= 1.0.0)
    unicode-display_width (1.6.0)
    wdm (0.1.1)

PLATFORMS
  ruby

DEPENDENCIES
  jekyll (~> 4.0.0)
  jekyll-feed (~> 0.12)
  minima (~> 2.5)
  tzinfo (~> 1.2)
  tzinfo-data
  wdm (~> 0.1.1)

BUNDLED WITH
   2.0.2

我正在尝试使用Jekyll设置github页面,目前它使用的是最小主题,我想将其更改为jekyll-theme-hacker。因此,我去了Gemfile,添加了gem“ github-pages”,组:...

ruby dependencies jekyll blogs
2个回答
0
投票

发生这种情况是因为您请求的Jeykll版本相互冲突。一种选择是通过在Gemfile

中更改所使用的Jeykll的版本来降级
-jekyll (~> 4.0.0)
+jekyll (~> 3.3)

0
投票

您的Gemfile

© www.soinside.com 2019 - 2024. All rights reserved.