jekyll 搭建(win)

参考官方文档:http://jekyll-windows.juthilo.com/1-ruby-and-devkit/

安装 Ruby 和 the Ruby DevKit

  • 安装 ruby(记住勾添加系统环境变量)
jekyll 搭建(win)_第1张图片
ruby-path.png
  • 安装 the Ruby DevKit
  • 解压到你想要的目录
  • 切换到目录执行以下命令
ruby dk.rb init
ruby dk.rb install
  • gem install jekyll
    • 在命令行中执行
      gem install jekyll

注:这一步可能会出现很多问题。

  1. 407 Proxy Authentication Required
    不知道是不是公司原因,一直报这个错。可以试试gem install jekyll -p http://username:password@ipaddress:port
  2. 源切换问题
    gem sources --remove https://rubygems.org/
    gem sources -a http://gems.ruby-china.org/
  3. ssl证书问题
    参考 https://gist.github.com/fnichol/867550
    建议手动下载证书添加环境变量

你可能感兴趣的:(jekyll 搭建(win))