AMPLIFiCAM

Setup Guide

For All Platforms

1. Install Ruby

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

2. Install Bundler

gem install bundler

3. Install Dependencies

bundle install

4. Install Python 3 (for local server)

macOS:

brew install python3

Windows:

Linux:

# Usually pre-installed, or:
sudo apt-get install python3  # Ubuntu/Debian
sudo dnf install python3       # Fedora/RHEL

Verify Installation

ruby --version    # Should be 2.7+
bundle --version  # Should show version
python3 --version # Should be 3.x (or python --version on Windows)

Next Steps

See README.md for development instructions.