想试一下jekyll+github搭建个博客,没想到卡在了安装jekyll上。
- 所以安装目录尽量不要带空格,我因为空格的问题卡了很久
- 安装完,使用jekyll serve运行服务的时候遇到问题
cannot load such file -- webrick
也可能是
cannot load such file -- bundler
这里可能是两种问题:
- 没有安装webrick或者bundler
这个很简单,用gem install webrick或者gem install bundler安装即可 -
可能是bundle没有添加webrick
命令行运行bundle add webrick就行
最后就可以jekyll serve启动你的本地blog了。