macOS:
brew install ruby
# Add to ~/.zshrc or ~/.bash_profile:
export PATH="/opt/homebrew/opt/ruby/bin:$PATH"
Windows:
Linux:
# Ubuntu/Debian
sudo apt-get install ruby-full build-essential
# Fedora/RHEL
sudo dnf install ruby ruby-devel
gem install bundler
bundle install
macOS:
brew install python3
Windows:
Linux:
# Usually pre-installed, or:
sudo apt-get install python3 # Ubuntu/Debian
sudo dnf install python3 # Fedora/RHEL
ruby --version # Should be 2.7+
bundle --version # Should show version
python3 --version # Should be 3.x (or python --version on Windows)
See README.md for development instructions.