PYRS logo PYRS

Getting Started

Edit this page

Getting started guide for PYRS runtime usage and first execution flow.

PYRS is a Python interpreter in Rust targeting CPython 3.14 compatibility. This page covers the fastest way to install, verify, and run code on supported native targets.

Prerequisites

  • macOS (x86_64 or aarch64) or Linux (x86_64)
  • curl and tar for the one-command installer
  • Homebrew (optional, macOS only) for brew install —HEAD …
  • Rust stable toolchain only for Cargo/source-build paths

Jump to Key Topics

Install and Verify

Install pyrs from GitHub and verify your binary is available. The default channel is nightly.

Shell
$ curl -fsSL https://raw.githubusercontent.com/BlueBlazin/pyrs/master/scripts/install.sh | bash $ pyrs --version

Run Python

Start with REPL, inline command mode, and source-file execution.

Shell
$ pyrs $ pyrs -c "import sys; print(sys.version)" $ pyrs path/to/script.py

Next Steps