Jekyll 本地安装运行

1、新建Gemfile 文件

$ ls
$ > Gemfile

2、编辑Gemfile

source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins

3、安装配置

$ bundle install

4、运行

$ bundle exec jekyll serve

参考:

  • Setting up your GitHub Pages site locally with Jekyll
  • https://jekyllrb.com

你可能感兴趣的:(Jekyll 本地安装运行)