Jekyll Serve 运行出错

跟风准备把博客从 wordpress 迁移到 jekyll 上,其实主要原因还是因为省钱。毕竟每个月VPS要掏 $7 (VPS $5 + backup 2$),换成 Github Pages 免费。

按照Jekyll QuickStart里的进行操作直到

1
$ jekyll serve

这时候报错了

1
$ Could not find gem 'jekyll-sitemap x64-mingw32' in any of the gem sources listed in your Gemfile.

网上搜索到了一个 解决方案

1
2
3
$ sudo gem install pygments.rb
$ gem install bundler
$ bundle install

问题解决