2017-07-25 21 views
0

の互換性のあるバージョンを実際に見つけることができませんでしたが、bundle exec jekyll serveを実行しようとしましたが、https://github.com/apache/incubator-rocketmq-siteの実行に失敗しました。'Bundlerはgem "jemoji"のバンドルexec jekyll serve

私はこれと同様のものを見つけることができないので、私はここに質問を投稿します。

$ bundle exec jekyll serve 
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/resolver.rb:21                      8:in `rescue in start': Bundler could not find compatible versions for gem "jemo                      ji": (Bundler::VersionConflict) 
    In Gemfile: 
    minimal-mistakes-jekyll x64-mingw32 was resolved to 4.1.0, which depends on 
     jemoji (~> 0.7) x64-mingw32 

Could not find gem 'jemoji (~> 0.7) x64-mingw32', which is required by gem 'mini                      mal-mistakes-jekyll x64-mingw32', in any of the sources. 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/r                      esolver.rb:212:in `start' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/r                      esolver.rb:191:in `resolve' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/d                      efinition.rb:235:in `resolve' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/d                      efinition.rb:159:in `specs' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/d                      efinition.rb:218:in `specs_for' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/d                      efinition.rb:207:in `requested_specs' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/r                      untime.rb:109:in `block in definition_method' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/r                      untime.rb:21:in `setup' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler.r                      b:101:in `setup' 
     from C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/bundler-1.15.3/lib/bundler/s                      etup.rb:19:in `<top (required)>' 
     from C:/Ruby22-x64/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54                      :in `require' 
     from C:/Ruby22-x64/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54                      :in `require' 

どうすれば解決できますか?

答えて

0

最初にbundle installを実行します(リンクされたREADMEの手順4)。これにより、必要なパッケージがインストールされます。

次に、bundle exec jekyll serveを実行できます。 bundle execは、インストールされたパッケージを使用することを意味します。

+1

ありがとうございました!バンドルのインストールが失敗したことがわかりました!私はそれを解決し、問題は消えます。 – Jaskey

関連する問題