Quick Start
This page shows the fastest way to start using FAIR Platform. FAIR only needs one command to install and one command to run.
Anyone can use it, and no programming experience is required.
Requirements
You only need Python 3.12 or higher.
When you install Python from python.org, it already includes pip, the tool used to install FAIR.
To confirm your Python installation:
python --versionIf you’re on Windows, use Command Prompt. On macOS or Linux, open Terminal.
Install FAIR
Open your terminal and run:
pip install fair-platformThis command downloads and installs FAIR on your system.
Run FAIR
Start the platform with:
fair serveFAIR will launch at:
http://localhost:3000If your browser doesn’t open automatically, copy that address into the URL bar.
Optional CLI Options
# Use a custom port (default is 3000)fair serve --port 8000
# API-only mode (no web interface)fair serve --headlessTroubleshooting
Python not recognized
If python or pip are not recognized on Windows, restart your computer or reinstall Python and check the box that says “Add Python to PATH” during installation.
Wrong Python version
Check your version:
python --versionYou must use Python 3.12 or higher.
Port already in use
If port 8000 is busy, choose another one:
fair serve --port 8080Next Steps
More documentation is coming soon, including:
- Platform features
- Module development guides
- Release process