Wendy LogoWendy
Installation

Developer Machine Setup

Set up your development machine with the Wendy CLI

System Compatibility

Wendy is quickly rolling out support for all major platforms, but at the moment, the experience requires the following:

TypePlatform/HardwareStatus
PlatformmacOS✓ Supported
Linux✓ Supported
WindowsComing Soon
HardwareNVIDIA Jetson✓ Supported
Raspberry Pi 5✓ Supported
Raspberry Pi 3/4Experimental

CLI Installation

The Wendy CLI requires Homebrew to be installed on your system.

Once you have Homebrew installed, update it to ensure you have the latest version, then install the Wendy CLI:

brew upgrade
brew install wendylabsinc/tap/wendy

The wendy CLI is your developer tool that helps build, discover, and deploy apps to WendyOS. It can even help get WendyOS setup on your NVIDIA Jetson and Raspberry Pi 5.

Verify the installation:

wendy --version

Install Python

WendyOS supports Python for building applications. We recommend using uv to manage Python installations and dependencies.

Install uv

uv is a fast Python package installer and resolver, written in Rust. It's significantly faster than pip and provides better dependency resolution.

curl -LsSf https://astral.sh/uv/install.sh | sh

After installation, restart your terminal or run:

source $HOME/.cargo/env
curl -LsSf https://astral.sh/uv/install.sh | sh

After installation, restart your terminal or run:

source $HOME/.cargo/env
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Restart your terminal after installation.

Verify the installation:

uv --version

Install Python 3.14

Use uv to install Python 3.14:

uv python install 3.14

Set Python 3.14 as your default version:

uv python pin 3.14

Verify the installation:

uv run python --version

You should see Python 3.14.x in the output.

uv Benefits: uv provides 10-100x faster package installation compared to pip, better dependency resolution, and automatic virtual environment management. It's the recommended way to manage Python for WendyOS development.

Docker Installation

Next Steps

Once you have the Wendy CLI installed, you can proceed to install WendyOS on your device: