Installation of Jekyll on Mac is usually less problematic than on Windows. However, you may run into permissions issues with Ruby that you must overcome. You should also use Bundler to be sure that you have all the required gems and other utilities on your computer to make the project run.
Ruby and RubyGems are usually installed by default on Macs. Open your Terminal and type which ruby
and which gem
to confirm that you have Ruby and Rubygems. You should get a response indicating the location of Ruby and Rubygems.
If you get responses that look like this:
/usr/local/bin/ruby
and
/usr/local/bin/gem
Great! Skip down to the Bundler section.
However, if your location is something like /Users/MacBookPro/.rvm/rubies/ruby-2.2.1/bin/gem
, which points to your system location of Rubygems, you will likely run into permissions errors when trying to get a gem. A sample permissions error (triggered when you try to install the jekyll gem such as gem install jekyll
) might look like this for Rubygems:
>ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /Library/Ruby/Gems/2.0.0 directory.
Instead of changing the write permissions on your operating system’s version of Ruby and Rubygems (which could pose security issues), you can install another instance of Ruby (one that is writable) to get around this.
Homebrew is a package manager for the Mac, and you can use it to install an alternative instance of Ruby code. To install Homebrew, run this command:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
If you already had Homebrew installed on your computer, be sure to update it:
brew update
Now use Homebrew to install Ruby:
brew install ruby
Log out of terminal, and then then log back in.
When you type which ruby
and which gem
, you should get responses like this:
/usr/local/bin/ruby
And this:
/usr/local/bin/gem
Now Ruby and Rubygems are installed under your username, so these directories are writeable.
Note that if you don’t see these user-specific paths, try restarting your computer. If you’re still having trouble, try making these directories writeable. If that still doesn’t work, try installing rbenv, which is a Ruby version management tool. If you still have issues getting a writeable version of Ruby, you need to resolve them before installing Bundler.
At this point you should have a writeable version of Ruby and Rubygem on your machine.
Now use gem
to install Jekyll:
gem install jekyll
jekyll serve
© 2017 Your Company, Inc.