Welcome to Jekyll!
jekyll是一个基于ruby的博客系统,本文简要介绍其安装过程。 主要有以下步骤:
- 安装 Ruby
- 安装 DevKit
- 安装 Jekyll
- 修改配置
1. 安装 Ruby和DevKit
略…
下载Ruby
直接下载Ruby+Devkit 2.4.4-1 (x64) 2018-04-25
2. 安装 Jekyll
- gem update,bundle install, bundle update
- gem install jekyll
3. 配置 Jekyll
- (Optional) Create a new Jekyll site: jekyll new mysite
- Replace the current theme in your Gemfile with gem “jekyll-theme-XXX”.
- Install the theme: bundle install
- Replace the current theme in your _config.yml file with theme: jekyll-theme-XXX.
- Build your site: bundle exec jekyll serve
4.修改配置
- 修改_config.yml中的信息。
- 修改about/index.html中个人信息。
- 修改_include/文件夹相关内容(主页, 应用, 标签, 关于等)。
5. 运行
bundle exec jekyll serve
参考:
Gem Source 更换
gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
bundle config mirror.https://rubygems.org https://gems.ruby-china.org
修改:2018-04-25 20:39