Skip to content

Installation

Gaurav14cs17 edited this page Jun 21, 2026 · 1 revision

Installation

Requirements

  • Python 3.8+
  • PyTorch 2.0+
  • CUDA (recommended for training)

Install from Source

git clone https://github.com/FlashVision/FlashTrack.git
cd FlashTrack
pip install -e ".[all]"

Install with Specific Extras

# Core only (tracking + training)
pip install -e .

# With ONNX export
pip install -e ".[export]"

# With analytics (matplotlib, pandas)
pip install -e ".[analytics]"

# Development (testing, linting)
pip install -e ".[dev]"

Verify Installation

flashtrack check

This verifies:

  • Package imports work
  • Engine components load
  • Tracker algorithms work
  • Model forward pass succeeds
  • GPU availability

Docker

cd docker
docker compose up --build

Clone this wiki locally