Setup
This section covers getting your development environment ready for GPUI development.
Topics
- Development Environment - Tools and dependencies
- Your First GPUI App - Building hello world from scratch
Prerequisites
Before starting with GPUI, you should have:
- Rust toolchain installed (rustup recommended)
- Basic familiarity with Rust
- A code editor with Rust support
Quick Start
cargo new my-gpui-app
cd my-gpui-app
cargo add gpui
See Your First GPUI App for a complete walkthrough.