Vitte Download
Quickly install, compile and verify with short, concrete steps.
Compiler Vitte
The visible toolchain now follows the Vitte compiler surface end to end: the driver lives in Vitte source, the grammar and parser stay aligned, and the repo checks expect a Vitte-only tree.
- See what changed in the last 48 hours
- Read the compiler driver alignment notes
- Open the main documentation index
- Open source-backed HTML guides
Quick Install
brew install vitte(or build from source withmake build).- Confirm binary path with
which vitte. - Run
vitte --versionand compare with this page release block.
Example verification
# after install
vitte --version
vitte check examples/first_project.vit
vitte explain E0001
Use this page to install and then move quickly to diagnostics or docs when you want to confirm a command or version.
Platforms
| Platform | Status | Notes |
|---|---|---|
| Linux x86_64/arm64 | Supported | Primary CI path |
| macOS Intel/Apple Silicon | Supported | Installer and source build paths |
| Windows x86_64 | Supported | Toolchain verification via compatibility checks |
Version Verification
vitte --versionshould match current release notes.vitte check examples/first_project.vitmust complete without parser/runtime errors.make core-language-gatemust pass for contributor-grade installs.
Proof-First Snapshot
Dernière mise à jour: May 14, 2026
Build ID / Commit: docs-v4 / main (see status.html)
Known issues
- Installer instructions still include historical references that will be trimmed.
- Cross-platform troubleshooting examples are being expanded.
Compatibility matrix
| Component | Status | Check |
|---|---|---|
| CLI binary | Ready | vitte --version |
| Core compile path | Ready | vitte check |
| Contributor gates | Ready | make core-language-gate |
Before you install
Confirm which path you want: a release package, a local build, or a quick check of the current compiler behavior. The page keeps those choices separate so you can move straight to the action that matters.
- Read the current notes if you want the context.
- Install or build the toolchain if you want to run it locally.
- Use the diagnostics page if you need to verify a result or decode an error.
Release Notes – Version 2.1.1
Date: February 18, 2026
Publication reference: Vitte2026_02
- Installer : vitte-2.1.1.pkg
- Uninstaller : vitte-uninstall-2.1.1.pkg
- Included : binaries
vitte,vittec, man pages, shell completions, runtime, and editor assets. - Patch : the test
internal_module_deniedreturns to the expected diagnosisE1016.
Recommended path
- Install : put down the tools and check the environment.
- Compile : compile, run the tests, prepare the output.
- Check : validate an example and read the diagnostics.
Install
brew install vittemake buildmake install
Compile
make buildmake testmake core-language-gate
Check
vitte check examples/first_project.vitvitte explain E0001make book-links-check
Current state
- The current tracked compiler work is Vitte-only, with no legacy backend sources remaining in the active surface.
- CI is green on the fast and strict paths, so the download page mirrors a working toolchain rather than a placeholder state.
- The next obvious checks are the docs, the driver notes, and the news log, which all point to the same compiler surface.