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:
| Type | Platform/Hardware | Status |
|---|---|---|
| Platform | macOS | ✓ Supported |
| Linux | ✓ Supported | |
| Windows | Coming Soon | |
| Hardware | NVIDIA Jetson | ✓ Supported |
| Raspberry Pi 5 | ✓ Supported | |
| Raspberry Pi 3/4 | Experimental |
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/wendyThe 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 --versionInstall 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 | shAfter installation, restart your terminal or run:
source $HOME/.cargo/envcurl -LsSf https://astral.sh/uv/install.sh | shAfter installation, restart your terminal or run:
source $HOME/.cargo/envpowershell -c "irm https://astral.sh/uv/install.ps1 | iex"Restart your terminal after installation.
Verify the installation:
uv --versionInstall Python 3.14
Use uv to install Python 3.14:
uv python install 3.14Set Python 3.14 as your default version:
uv python pin 3.14Verify the installation:
uv run python --versionYou 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: