Installation
Get FluxLoop installed and ready to use in minutes.
Prerequisites
- Python 3.8 or higher
- pip (Python package installer)
- Virtual environment (recommended)
Install FluxLoop Packages
Install both the CLI and SDK:
pip install fluxloop-cli fluxloop
Or install them separately:
# CLI only
pip install fluxloop-cli
# SDK only
pip install fluxloop
Verify Installation
Check that the CLI is installed:
fluxloop --version
You should see output like:
FluxLoop CLI version 0.2.1
Optional: VSCode Extension
If you use Visual Studio Code, install the FluxLoop extension for enhanced workflow:
- Open VSCode
- Go to Extensions (Cmd+Shift+X / Ctrl+Shift+X)
- Search for "FluxLoop"
- Click Install
Or install from command line:
code --install-extension fluxloop
Virtual Environment Setup
We recommend using a virtual environment:
# Create virtual environment
python -m venv .venv
# Activate (macOS/Linux)
source .venv/bin/activate
# Activate (Windows)
.venv\Scripts\activate
# Install FluxLoop
pip install fluxloop-cli fluxloop
For more details, see Virtual Environment Setup.
Next Steps
Now that you have FluxLoop installed:
- Quick Start - Create your first project
- Core Concepts - Understand the fundamentals
- End-to-End Guide - Complete walkthrough