summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-04-04 23:20:50 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-04-04 23:20:50 -0400
commit15a3eb4c7e6c92a255f4cb26d5ce1764ebad6eaf (patch)
treeb6a928a6a0d91196af3d3ba9456bb07ae922782d
parent09ab88e7bf21011b424d12cffce1fdfe5b5e0a33 (diff)
(docs) Be more specific about manual installation
-rw-r--r--README.md17
1 files changed, 16 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6b60b21c..655d2c3a 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,22 @@ Note that binaries are built on the stable version of Rust, and I mainly test an
### Manual
-Clone from this repo or from [Releases](https://github.com/ClementTsang/bottom/releases), and build with `cargo build --release`. You may also want to strip the binary after.
+A few ways to go about doing this:
+
+```bash
+# Clone and install all via Cargo
+cargo install --git https://github.com/ClementTsang/bottom
+
+# Clone and install manually
+git clone https://github.com/ClementTsang/bottom
+cd bottom
+cargo install --path .
+
+# Download from releases and install
+curl -LO https://github.com/ClementTsang/bottom/releases/download/0.2.2/bottom_source_code.tar.gz
+tar -xzvf bottom_source_code.tar.gz
+cargo install --path .
+```
### Cargo