Skip to content

Instantly share code, notes, and snippets.

@digizeph
Last active February 16, 2016 04:06
Show Gist options
  • Select an option

  • Save digizeph/f76c67b1d915d50371a8 to your computer and use it in GitHub Desktop.

Select an option

Save digizeph/f76c67b1d915d50371a8 to your computer and use it in GitHub Desktop.
Fix Jekyll update (installation) error about Ruby 2 requirement
OS: Ubuntu 14.04
Solution:
sudo apt-get install ruby2.0
cd /usr/bin
sudo unlink gem
sudo ln -s gem2.0 gem
gem install jekyll
Basically, what it does is to replace the older version of gem1.9 with the new gem 2.0.
This should be able to fix the Jekyll's compatibility problem with Ruby1.9.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment