The right way to use jekyll
- Install a full Ruby development environment.
-
Install Jekyll and bundler gems.
gem install jekyll bundler bundle add webrick **windows** sudo apt-get install ruby-full build-essential zlib1g-dev **ubuntu**
-
Create a new Jekyll site at ./myblog.
jekyll new myblog
-
Change into your new directory.
cd myblog
-
Build the site and make it available on a local server.
jekyll serve
- Browse to http://localhost:4000