捆绑执行 jekyll serve > 依赖项错误:Yikes!看起来你没有 jekyll-commonmark-ghpages



我正在尝试运行bundle exec jekyll build,但我得到以下输出。

Configuration file: /path/_config.yml
  Dependency Error: Yikes! It looks like you don't have jekyll-commonmark-ghpages or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- rouge' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/! 
jekyll 3.8.5 | Error:  jekyll-commonmark-ghpages

我正在编辑我的网站,该网站托管在GitHub页面上。Jekyll的这个过程以前工作过,但我很长一段时间没有触摸过。

我尝试删除gemfile.lock和bundle install,但是我仍然会遇到相同的错误。我正在运行Kubuntu 19.04,Ruby 2.5.5p157(2019-03-15修订67260([x86_64-linux-gnu]。

我的捆绑式显示输出:

Gems included by the bundle:
  * activesupport (4.2.11.1)
  * addressable (2.6.0)
  * bundler (2.0.2)
  * coffee-script (2.4.1)
  * coffee-script-source (1.11.1)
  * colorator (1.1.0)
  * commonmarker (0.17.13)
  * concurrent-ruby (1.1.5)
  * dnsruby (1.61.2)
  * em-websocket (0.5.1)
  * ethon (0.12.0)
  * eventmachine (1.2.7)
  * execjs (2.7.0)
  * faraday (0.15.4)
  * ffi (1.11.1)
  * forwardable-extended (2.6.0)
  * gemoji (3.0.1)
  * github-pages (198)
  * github-pages-health-check (1.16.1)
  * html-pipeline (2.11.1)
  * http_parser.rb (0.6.0)
  * i18n (0.9.5)
  * jekyll (3.8.5)
  * jekyll-avatar (0.6.0)
  * jekyll-coffeescript (1.1.1)
  * jekyll-commonmark (1.3.1)
  * jekyll-commonmark-ghpages (0.1.5)
  * jekyll-default-layout (0.1.4)
  * jekyll-feed (0.11.0)
  * jekyll-gist (1.5.0)
  * jekyll-github-metadata (2.12.1)
  * jekyll-mentions (1.4.1)
  * jekyll-optional-front-matter (0.3.0)
  * jekyll-paginate (1.1.0)
  * jekyll-readme-index (0.2.0)
  * jekyll-redirect-from (0.14.0)
  * jekyll-relative-links (0.6.0)
  * jekyll-remote-theme (0.3.1)
  * jekyll-sass-converter (1.5.2)
  * jekyll-seo-tag (2.5.0)
  * jekyll-sitemap (1.2.0)
  * jekyll-swiss (0.4.0)
  * jekyll-theme-architect (0.1.1)
  * jekyll-theme-cayman (0.1.1)
  * jekyll-theme-dinky (0.1.1)
  * jekyll-theme-hacker (0.1.1)
  * jekyll-theme-leap-day (0.1.1)
  * jekyll-theme-merlot (0.1.1)
  * jekyll-theme-midnight (0.1.1)
  * jekyll-theme-minimal (0.1.1)
  * jekyll-theme-modernist (0.1.1)
  * jekyll-theme-primer (0.5.3)
  * jekyll-theme-slate (0.1.1)
  * jekyll-theme-tactile (0.1.1)
  * jekyll-theme-time-machine (0.1.1)
  * jekyll-titles-from-headings (0.5.1)
  * jekyll-watch (2.2.1)
  * jemoji (0.10.2)
  * kramdown (1.17.0)
  * liquid (4.0.0)
  * listen (3.1.5)
  * mercenary (0.3.6)
  * mini_portile2 (2.4.0)
  * minima (2.5.0)
  * minitest (5.11.3)
  * multipart-post (2.1.1)
  * nokogiri (1.10.3)
  * octokit (4.14.0)
  * pathutil (0.16.2)
  * public_suffix (3.1.1)
  * rb-fsevent (0.10.3)
  * rb-inotify (0.10.0)
  * rouge (2.2.1)
  * ruby-enum (0.7.2)
  * ruby_dep (1.5.0)
  * rubyzip (1.2.3)
  * safe_yaml (1.0.5)
  * sass (3.7.4)
  * sass-listen (4.0.0)
  * sawyer (0.8.2)
  * terminal-table (1.8.0)
  * thread_safe (0.3.6)
  * typhoeus (1.3.1)
  * tzinfo (1.2.5)
  * unicode-display_width (1.6.0)

预期的结果是因为Jekyll成功地为该站点服务,因此我可以在我的机器上本地查看它。让我知道您是否需要更多信息。

我不知道为什么我做了什么,但它起作用。

我做了 gem uninstall -aIx.,然后 bundle install,一切都备份并运行。资料来源:摆脱不会死的红宝石宝石。

棘手的一个,GEMSPEC和您的gem show之间的比较并未向我揭示任何问题。

尝试gem uninstall jekyll-commonmark-ghpages并删除其所有版本。

然后使用以下方式再次安装所有内容:

  bundle install
  bundle exec jekyll build

我还找到了与Windows上Rouge有关的帖子,但这可能与您在Kubuntu工作时无关。

相关内容

最新更新