Home Docs Download About Contact
Download

Installation

Install Prism on macOS, Windows and Linux, or build from source.

Getting Started Updated 2026-08-01 Edit this page

Prism is distributed as a single binary. One command installs it on any platform.

macOS · Linux · BSD

curl -fsSL https://prismlang.pages.dev/install.sh | bash

To install the full font catalog alongside Prism:

curl -fsSL https://prismlang.pages.dev/install.sh | bash -s -- --fonts

To uninstall:

curl -fsSL https://prismlang.pages.dev/uninstall.sh | bash

Windows (PowerShell)

irm https://prismlang.pages.dev/install.ps1 | iex

To install the full font catalog alongside Prism:

iex "& { $(irm https://prismlang.pages.dev/install.ps1) } -Fonts"

To uninstall:

irm https://prismlang.pages.dev/uninstall.ps1 | iex

Verify

Run the version command to confirm everything works:

prism version

You should see output similar to:

Prism 0.1.0 (self-hosted)
Target: x86_64-unknown-linux-gnu
LSP:   available

The compiler reports its own target triple and whether the language server is available — the same binary serves both.

Tip: keep Prism up to date with the same command you installed it with. The toolchain is one release, so there is exactly one version number to watch.

See what’s next in Hello, World.