Skip to content

Instantly share code, notes, and snippets.

@viper25
Last active September 17, 2017 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viper25/9f529067681e1dc77a76372a9c71f6ff to your computer and use it in GitHub Desktop.
Save viper25/9f529067681e1dc77a76372a9c71f6ff to your computer and use it in GitHub Desktop.
Install Jekyll on Ubuntu

Ubuntu 16.04

$ sudo apt-get update
$ sudo apt-get install ruby ruby-dev make gcc
$ sudo gem install jekyll bundler

see source

How to Start Jekyll

$ jekyll new myblog
$ cd myblog
$ bundle exec jekyll serve
# or simply $ jekyll serve
# with reload and refresh every file changes $ jekyll serve -w
# => Now browse to http://localhost:4000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment