安装jekyll及过程中遇到的一点问题

  1. Install a full Ruby development environment.

  2. Install Jekyll and bundler gems.

    gem install jekyll bundler
    
  3. jekyll new myblog

  • 可能会卡到Running bundle install in /home/imed002/Documents/myblog… 这一步,这时候ctrl+c终止掉,进入新建的项目,将gemfile的source "https://rubygems.org"改为source ‘https://gems.ruby-china.com’, 然后在当前目录执行bundle install就行
  1. bundle exec jekyll serve
    
  2. Browse to http://localhost:4000

你可能感兴趣的:(安装jekyll及过程中遇到的一点问题)