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. macOS: brew tap rysh-works/rysh && brew install rysh.
  2. Debian/Ubuntu: sudo apt install rysh.
  3. Fedora/RHEL: sudo dnf install rysh.
  4. Windows: winget install RyshWorks.Rysh.
  5. From source: git clone ... && make build && make install.
  6. Verify with rysh --version.

Commands shown

# brew tap rysh-works/rysh && brew install rysh
# sudo apt install rysh     (Debian / Ubuntu)
# sudo dnf install rysh     (Fedora / RHEL)
# winget install RyshWorks.Rysh     (Windows)
# git clone https://github.com/rysh-works/rysh && cd rysh
# make build && make install
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 Homebrew, apt, dnf, WinGet, or from source -- it runs anywhere Go runs.