本地配置博客程序 Jekyll 环境

使用 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

参考资料

欢迎通过「邮件」或者点击「这里」告诉我你的想法
Welcome to tell me your thoughts via "email" or click "here"