Skip to content
v0.1.7-alpha — Early Access

Install Zolo

Get started in under 2 minutes. Available for Linux, macOS and Windows.

Select your operating system:

1. Install Zolo

Download the archive for your platform and run the commands below — they set up the runtime, plugins and PATH for you. No extra configuration needed.

Includes the runtime, language server (LSP), debugger (DAP) and all plugins.

Terminal

curl -fL https://github.com/devzolo/zolo-releases/releases/download/v0.1.7-alpha/zolo-lang-0.1.7-alpha-linux-x64.tar.gz -o /tmp/zolo.tar.gz
mkdir -p ~/.zolo && tar xzf /tmp/zolo.tar.gz -C ~/.zolo
sh ~/.zolo/install.sh

Verify Installation

$ zolo --version
zolo 0.1.7-alpha
$ echo 'print("Hello, Zolo!")' | zolo run -
Hello, Zolo!

VS Code Extension

Install the official extension for syntax highlighting, LSP autocompletion, DAP debugging and automatic formatting.

Don't double-click the .vsix — on Windows that opens the Visual Studio installer, which can't install VS Code extensions. Install it from your editor instead:

From the editor: Extensions ▸ ⋯ ▸ Install from VSIX…

Or from the terminal (code, cursor, windsurf…):
code --install-extension [email protected]

Works in VS Code and its forks — Cursor, Antigravity, Windsurf, VSCodium…

Syntax Highlighting Code coloring with a theme optimized for Zolo
LSP — Language Server Autocomplete, hover docs, go-to-definition, find references
DAP — Debugger Breakpoints, watch, call stack — debug right in VS Code
Automatic Formatting Format on save with `zolo fmt`

Other Editors

Neovim

Configure via nvim-lspconfig with the zolo-lsp server

lspconfig.zolo.setup{}

Helix

Add to languages.toml with the language server path

[[language]]
name = "zolo"

Emacs

Use eglot or lsp-mode pointing to zolo-lsp

(add-to-list 'lsp-language-id-configuration ...)

Zed

Extension in development — contribute on GitHub

Coming soon

Manage installation

Update or uninstall Zolo

These commands permanently remove Zolo from your system. There's no undo — double-check the paths before running.

Uninstall the binaries

Removes ~/.zolo and its PATH entry.

rm -rf ~/.zolo ~/.local/bin/zolo ~/.local/bin/zolo-lsp ~/.local/bin/zolo-dap

Uninstall the extension

Works in VS Code and its forks — swap `code` for cursor / windsurf / etc.

code --uninstall-extension devzolo.zolo-lang
enespt-br