Jekyll服务不起作用:看起来你没有安装pygments或其中一个依赖项

And*_*oga 39 pygments jekyll

Configuration file: /Users/andrechristoga/Documents/type-theme/_config.yml
       Deprecation: You appear to have pagination turned on, but you haven't included the `jekyll-paginate` gem. Ensure you have `gems: [jekyll-paginate]` in your configuration file.
            Source: /Users/andrechristoga/Documents/type-theme
       Destination: /Users/andrechristoga/Documents/type-theme/_site
 Incremental build: disabled. Enable with --incremental
      Generating... 
  Dependency Error: Yikes! It looks like you don't have pygments 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 -- pygments' If you run into trouble, you can find helpful resources at http://jekyllrb.com/help/! 
  Liquid Exception: pygments in /Users/andrechristoga/Documents/type-theme/_posts/2014-11-28-markdown-and-html.md
             ERROR: YOUR SITE COULD NOT BE BUILT:
                    ------------------------------------
                    pygments
Run Code Online (Sandbox Code Playgroud)

当我输入时,这些是消息jekyll serve.

Gey*_*Bem 74

我有同样的问题,但修复了安装pygments gem.

gem install pygments.rb
Run Code Online (Sandbox Code Playgroud)

并将其添加到我的Gemfile中.

gem 'pygments.rb'
Run Code Online (Sandbox Code Playgroud)