Skip to main content

Installation

ShedBoxAI is available as a Python package and can be installed via pip.

Requirements

  • Python 3.8 or higher
  • pip (Python package installer)

Standard Installation

Install ShedBoxAI using pip:

pip install shedboxai

Development Installation

For development or to get the latest features:

# Clone the repository
git clone https://github.com/shedboxai/shedboxai.git
cd shedboxai

# Install in development mode
pip install -e .

# Install with test dependencies
pip install -e ".[test]"

Verify Installation

Verify your installation by running:

shedboxai --help

You should see the ShedBoxAI command-line interface help text.

Next Steps