Installing binaries directly from GitHub releases with mise               [ Home ](https://davidharting.com) [ Notes ](https://davidharting.com/notes) [ Media Log ](https://davidharting.com/media) [ Pages ](https://davidharting.com/pages)  [ Login ](https://davidharting.com/login) 

 2026 July 1

Installing binaries directly from GitHub releases with mise
===========================================================

  Nate Berkopec's [Four-line Fridays newsletter](https://speedshop.co) turned me on to [mise](https://mise.jdx.dev/) for installing global and project-specific tools.

Mise is dotfile-friendly and fast! If something isn't in the mise registry directly, I'll install via mise's ability to use npm, pypi, or cargo when available.

Even better, I learned that I can install binaries directly from GitHub releases with mise, bypassing package manager and eliminating the need for Node, Python, or Rustup toolchain to be present. I recently did this for pls, Render, and pup!

```bash
mise use -g github:DataDog/pup@latest
mise use -g github:pls-rs/pls@latest[prerelease=true]
mise use -g github:render-oss/cli@latest

```

 [ Back to all notes ](https://davidharting.com/notes)
