diff --git a/README.md b/README.md
index 31e7027..cabd153 100644
--- a/README.md
+++ b/README.md
@@ -9,19 +9,34 @@ An opinionated formatter for [Verus] code.
## Installing and Using Verusfmt
-Install the latest release using:
+We support multiple install methods:
-``` sh
-cargo install verusfmt --locked
-```
+* [Latest release](https://github.com/jaybosamiya/verusfmt/releases/latest) using:
-Alternatively, install the latest git commit using:
+ - Pre-built binaries (click to expand)
+
+ ```sh
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/jaybosamiya/verusfmt/releases/latest/download/verusfmt-installer.sh | sh
+ ```
+
+
+ - cargo install (click to expand)
+
+ ``` sh
+ cargo install verusfmt --locked
+ ```
+
+
+* Bleeding-edge latest git commit
+
+ - cargo install (click to expand)
+
+ ```sh
+ cargo install --git https://github.com/jaybosamiya/verusfmt --locked
+ ```
-```sh
-cargo install --git https://github.com/jaybosamiya/verusfmt --locked
-```
-This will install the `verusfmt` binary. You can then run it on a file using:
+These will install the `verusfmt` binary. You can then run it on a file using:
``` sh
verusfmt foo.rs