Install MoveAI
Python, npm, Docker, or Homebrew. Verify in 30 seconds.
Python / pip
$pip install moveai-sdk Requires Python 3.9+. Install in a virtual environment recommended.
moveai --version to verify.
Node / npm
$npm install -g @moveai/sdk Node 18+ required. Global install adds CLI to your PATH.
moveai --version to verify.
Docker
$docker pull moveai/sdk:latest Runs without local Python/Node. Mount your project directory.
docker run moveai/sdk:latest version to verify.
macOS Homebrew
$brew install moveai/tap/moveai Updates via brew upgrade. Requires macOS 12+ or Linux.
moveai --version to verify.
Quick Install
$curl -fsSL https://get.moveai.io | sh Detects OS and installs the correct package. Supports Linux/macOS/WSL.
moveai --version to verify.
Verify Install
bash
```bash
moveai --version
# Expected: moveai v1.x.x
# Or test via Python:
python -c "import moveai; print(moveai.__version__)"
```