Skip to main content

Install Runme on CLI

Runme badget

Runme works effectively on the CLI. If you are a power user who enjoys running Markdown files from the terminal of your local machine, this section is for you.

cli

Here, we will give you detailed instructions on how to install Runme on your CLI.

Install Runme On MacOS

To get started, one of the easiest ways to install Runme on MacOS is by using Homebrew.

Before you proceed, ensure you have the latest version of Homebrew on your local machine, use the command below to update if needed:

brew update

Once you have the latest version of Homebrew, proceed with installing Runme. Use the command below to install:

brew install runme

You should see a similar output if Runme is successfully installed.

==> Downloading https://ghcr.io/v2/homebrew/core/runme/manifests/3.0.2
##################################################################################################################################################################################################### 100.0%
==> Fetching runme
==> Downloading https://ghcr.io/v2/homebrew/core/runme/blobs/sha256:c8fb6b6c6b3ee65fd8ee8b24fe9e85bec007afb89623f7fc40a83705d9e182de
##################################################################################################################################################################################################### 100.0%
==> Pouring runme--3.0.2.arm64_sonoma.bottle.tar.gz
==> Caveats
zsh completions have been installed to:
/opt/homebrew/share/zsh/site-functions
==> Summary
:beer: /opt/homebrew/Cellar/runme/3.0.2: 8 files, 21.9MB
==> Running `brew cleanup runme`...
Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).

Installing Runme On Windows

For Windows users, you can conveniently install Runme using Scoop.sh, a command-line installer for Windows.

Run the commands below on your terminal to install Runme:


scoop bucket add stateful https://github.com/stateful/scoop-bucket.git
scoop install stateful/runme

Other Platforms

Alternatively, you can explore Runme's releases and choose the binary that corresponds to your operating system.

Example:

You can use curl or wget to install the runme binary

wget https://download.stateful.com/runme/3.1.0-rc.0/runme_darwin_x86_64.tar.gz

Move the runme binary to /usr/local/bin (recommended) or /bin (as per your request)

sudo mv runme /usr/local/bin/ # or /bin/runme if you went that route

Verify the binary is in the path and executable.

which runme

This command should output the path to the binary, confirming it's in your system's PATH. To ensure it's executable, you can explicitly set executable permissions:

sudo chmod +x /usr/local/bin/runme  # or /bin/runme if you went that route

Run the binary by simply typing runme

runme

If you have a different preferred distribution mechanism, feel free to inform us on Discord.

We have also provided an option for Go developers to install Runme. If you are a Go developer or you have Go developer tools installed, you can install Runme with go install command. Use the command below to carry out this installation:

go install github.com/stateful/runme/v3@v3

Warning!

The displayed version may appear as “0.0.0”. This is an expected behavior and does not affect functionality

If you don't have Go developer tools installed and still want to use this method, download and install Go.

Basic Usage with Runme TUI

Runme provides a user-friendly text-based user interface (TUI) that allows users to interact with Runme through typed commands and responses displayed on their screen.

This TUI can be accessed using the command runme tui or just runme . These commands essentially allow you to quickly execute any script present in the README.

The video below displays Runme’s TUI and how to access its features using the command.

Runme TUI Usage

Warning!

Runme would not work if your current working directory does not contain a README file at the top level! You can use the --chdir flag to alter the working directory or --filename to specify any other Markdown file, without changing the environment's working directory.

Runme parses every shell or bash code block of a Markdown file and allows you to execute it within your terminal environment. It comes with several commands that help you to run code blocks in your Markdown successfully:

Runme executes commands inside your runbooks, docs, and READMEs. Parses commands
directly from Markdown files to make them executable.

Usage:
runme [flags]
runme [command]

Available Commands:
completion Generate the autocompletion script for the specified shell
extension Check your Runme VS Code extension status
fmt Format a Markdown file into canonical format
help Help about any command
list List available commands
open Launch Runme in a headless web client
print Print a selected snippet
run Run a selected command
tui Run the interactive TUI

Flags:
--allow-unknown Display snippets without known executor (default true)
--allow-unnamed Allow scripts without explicit names
--background Enable running background blocks as background processes
--chdir string Switch to a different working directory before executing the command (default "/Users/macbookpro")
--entries int Number of entries to show in TUI (default 5)
--env-order stringArray List of environment files to load in order. (default [.env.local,.env])
--exit Exit TUI after running a command
--filename string Name of the README file (default "README.md")
--filter string Regular expression to filter results, by filename and task name
--git-ignore Whether to respect .gitignore file(s) in project (default true)
-h, --help Help for runme
--ignore-pattern stringArray Patterns to ignore in project mode (default [node_modules,.venv])
--insecure Run command in insecure-mode
--load-env Load env files from local project. Control which files to load with --env-order (default true)
--log Enable logging
--log-file string Log file path (default "/var/tmp/runme.log")
--project string Root project to find runnable tasks
-s, --server string Server address to connect runner to
--tls string Directory for TLS authentication (default "/Users/macbookpro/Library/Application Support/runme/tls")
-v, --version Version of runme

Use "runme [command] --help" for more information about a command.

Feedback:
For issues and questions join the Runme community at https://discord.gg/runme

Runme’s TUI is awesome however, if you want to run a specific command quickly, simply run a specific script by name using the runme run <command> subcommand.

Next Steps

You have successfully installed Runme on your CLI. Now, it’s time to explore just how Runme works on CLI and how you can leverage it for your Markdown files in CLI. To learn more about how Runme works in CLI, read our documentation.