Instructions tested for Ubuntu 24.04 and Ruby 3.2.3
- Install ruby and bundler dependencies manager
sudo apt-get install ruby-all
gem install bundler
- Install build dependencies for
bigdecimal
sudo apt-get install build-essential
- Config bundler so that it will install dependencies in home instead of root directory
echo "export GEM_HOME=$HOME/.gem" >> $HOME/.bashrc
- Install dependencies (gems)
bundle install
- Serve the site locally and navigate to http://localhost:4000/site/
bundle exec jekyll serve