使用 Arch Linux:
sudo pacman -S ruby base-devel
在 ~/.zshrc
中加入:
# Install Ruby Gems to default location
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
export PATH="$PATH:$GEM_HOME/bin"
安装 Jekyll:
gem install jekyll bundler
新建博客并运行:
jekyll new myblog
cd myblog
bundle exec jekyll serve
# http://localhost:4000
参考资料