Last active
July 25, 2016 13:20
-
-
Save chrisma/13f66f74b83342e29e01 to your computer and use it in GitHub Desktop.
Installing Jekyll for Github Pages
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
# https://github.com/rbenv/rbenv#basic-github-checkout | |
# requirements for installing / compiling ruby 2.3.0 | |
sudo apt-get install -y libreadline-dev | |
sudo apt-get install -y libssl-dev | |
# Install ruby > 2.0 with rbenv | |
rbenv install 2.3.0 --verbose | |
sudo apt-get install ruby-dev | |
gem install bundler | |
# do NOT use sudo with the next command | |
# cd to Jekyll site directory | |
rbenv local 2.3.0 | |
gem install github-pages --no-ri --no-rdoc --verbose |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
apt-get install -y libssl-dev
Dependency for compiling ruby 2.3.0