HomeTutorials › Getting Started
Getting Started

Installing Rysh

#002 0:21 Part of the Rysh video series

One command to install. Every platform.

Installing Rysh — 0:21 walkthrough

What you'll see

  1. Any platform: curl -fsSL https://rysh.ai/install.sh | sh.
  2. macOS or Linux via Homebrew: brew install rysh-ai/rysh/rysh.
  3. Debian/Ubuntu: add the signed APT repo at packages.rysh.ai, then sudo apt install rysh.
  4. Fedora/RHEL: add the RPM repo at packages.rysh.ai, then sudo dnf install rysh.
  5. Windows: install WSL2, then run the curl installer inside it.
  6. Verify with rysh --version.

Commands shown

# curl -fsSL https://rysh.ai/install.sh | sh
# brew install rysh-ai/rysh/rysh     (macOS / Linux)
# sudo apt install rysh     (Debian / Ubuntu, after adding the repo)
# sudo dnf install rysh     (Fedora / RHEL, after adding the repo)
# wsl --install -d Ubuntu     (Windows, then run the installer inside)
rysh --version

Keys used

Enter

Transcript

0:00One command to install -- on every platform Rysh supports.

0:04On macOS, tap the repo and brew install rysh. Two commands and you're done.

0:12On Debian or Ubuntu, apt install rysh. On Fedora or RHEL, dnf install rysh.

0:20On Windows, install with WinGet.

0:27Or build from source -- it's just Go. make build, then make install.

0:36Verify it with rysh --version. You're ready to go.

Key takeaway
Rysh installs via the curl installer, Homebrew, APT, or DNF -- and on Windows through WSL2.