Last active
February 16, 2016 04:06
-
-
Save digizeph/f76c67b1d915d50371a8 to your computer and use it in GitHub Desktop.
Fix Jekyll update (installation) error about Ruby 2 requirement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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