Jekyll serve 不起作用:看起来您没有安装 pygments 或其依赖项之一

Jekyll serve didn't work: It looks like you don't have pygments or one of its dependencies installed

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

这些是我键入 jekyll serve 时的消息。

我遇到了同样的问题,但通过安装 pygments gem.

修复了它
gem install pygments.rb

并将其添加到我的 Gemfile。

gem 'pygments.rb'

如果你使用命令sudo gem install pygments.rbgem install pygments.rb,它可能不起作用

所以你可以试试 root:

su root
gem install pygments.rb

这解决了我的问题。

如果您是 windows 用户,您可以 运行 CLI 作为管理员。这会有所帮助。