Skip to main content

Prerequisites

  • Python 3.11+
  • Git
  • Virtual environment (recommended)

Installation

1

Clone Repository

Clone the SuperBox backend repository:
git clone https://github.com/areebahmeddd/superbox.ai.git
cd superbox.ai
2

Create Virtual Environment

Create and activate a virtual environment:Windows (PowerShell):
python -m venv .venv
.\.venv\Scripts\Activate.ps1
macOS/Linux:
python3 -m venv .venv
source .venv/bin/activate
3

Install SuperBox CLI

Install with CLI support:
python -m pip install -e .[cli]
For development, install with dev tools: python -m pip install -e .[dev]

Verify Installation

superbox --help
# Shows available commands

Next Steps