summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-05-12 00:54:50 -0400
committerGitHub <noreply@github.com>2023-05-12 00:54:50 -0400
commitc8da8f16f0693c70ad0a339fdac4c4fb83274507 (patch)
treec5ab55e415695e83bc8f3f765f3cb5bcfb980894
parent2c13683eb3fe2882f7a3978e4f8dd1b462b67c21 (diff)
docs: update install instructions
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 02ea297f..c0306777 100644
--- a/README.md
+++ b/README.md
@@ -257,7 +257,7 @@ The winget package can be found [here](https://github.com/microsoft/winget-pkgs/
```bash
winget install bottom
-# Alternatively, to be more specific:
+# If you need a more specific app id:
winget install Clement.bottom
```
@@ -280,19 +280,19 @@ rustup update stable
# Option 1 - Download from releases and install
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.0.tar.gz
tar -xzvf 0.9.0.tar.gz
-cargo install --path .
+cargo install --path . --locked
# Option 2 - Clone from master and install manually
git clone https://github.com/ClementTsang/bottom
cd bottom
-cargo install --path .
+cargo install --path . --locked
# Option 3 - Clone and install directly from the repo all via Cargo
-cargo install --git https://github.com/ClementTsang/bottom
+cargo install --git https://github.com/ClementTsang/bottom --locked
# You can also pass in the target-cpu=native flag for
# better CPU-specific optimizations. For example:
-RUSTFLAGS="-C target-cpu=native" cargo install --path .
+RUSTFLAGS="-C target-cpu=native" cargo install --path . --locked
```
### Binaries