手记

解决Mac 下 Jekyll + GitHub Pages搭建个人博客相关问题


网上有很多关于Jekyll + GitHub Pages搭建个人博客的教程,官方文档也写得很好,具体流程可以参考,这里就不详细写了。接下来我我主要记录一下我在安装过程中遇到的问题。

Install on macOS

官方安装真是很理想的状态,下面是我的安装过程中的过程以及解决方案

xcode-select --install
ruby -v
gem install bundler jekyll

QA.jpeg

Question:

[-bash-3.2$ gem install bundler jekyll
ERROR:  Error installing jekyll:
        public_suffix requires Ruby version >= 2.1.

Solve:
安装rvm  [有了rvm,妈妈再也不担心我的ruby版本了,哈哈]
执行:

[-bash-3.2$ curl -L https://get.rvm.io | bash -s stable --autolibs=enabled --ruby

WechatIMG1218.jpeg

再执行

-bash-3.2$ rvm -v
-bash: rvm: command not found
-bash-3.2$ rvm use 1.9.3 --default
-bash: rvm: command not found
-bash-3.2$ rvm -v
-bash: rvm: command not found
-bash-3.2$ rvm use 1.9.3
-bash: rvm: command not found
-bash-3.2$ source ~/.bashrc
-bash-3.2$ source ~/.bash_profile
-bash-3.2$ rvm -v
rvm 1.29.3 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]

参考文献 :
rvm: command not found
stackoverflow
Blog

rvm 接下来我用rvm 安装ruby ,jekyll官方文档采用2.3.3版本,那么我们安装此版本

[-bash-3.2$ rvm install 2.3.3

rubby安装成功.jpeg

安装 Jekyll

gem install bundler jekyll

安装默认主题 jekyll-website 站点

mkdir jekyll-websitecd jekyll-website# Create a Gemfilebundle init# Add Jekyllbundle add jekyll# Install gemsbundle install

总结:
安装过程中查阅很多文档终于解决了安装,掌握一个思路就很好解决:

思维导图

记录 && 希望可以帮到有遇到同样问题的朋友



作者:Searchen
链接:https://www.jianshu.com/p/9905eb031303

0人推荐
随时随地看视频
慕课网APP