Install dependencies:
- Download and install Ruby Gems, either from https://rubygems.org/pages/download, or from your system's package manager (e.g.
ruby-fullon Ubuntu andrubygemson Arch) - Install jekyll with
gem install bundler jekyll - Make bundle install gems locally with
bundle config --local path .bundle- This may not be necessary on all systems, but in certain scenarios bundler tries to write gem to /usr and fails due to permission errors. This resolves that issue.
- Install project dependencies with
bundle install(from the project directory)
Run the site:
$ bundle exec jekyll serveNote that the dependencies are not compatible with Ruby versions >=3.3. As such, it may be necessary to use rbenv or a similar tool to downgrade ruby.