Skip to content

Instantly share code, notes, and snippets.

@chrisma
Last active July 25, 2016 13:20
Show Gist options
  • Save chrisma/13f66f74b83342e29e01 to your computer and use it in GitHub Desktop.
Save chrisma/13f66f74b83342e29e01 to your computer and use it in GitHub Desktop.
Installing Jekyll for Github Pages
# 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
@lschwetlick
Copy link

apt-get install -y libssl-dev
Dependency for compiling ruby 2.3.0

@chrisma
Copy link
Author

chrisma commented Jul 25, 2016

Thanks. Added.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment