@dembee
🧵 How to Install & Use soundness-cli on Ubuntu (Beginner Friendly Guide)
A step-by-step thread to help you go from zero to generating keys with soundness-cli. Save this 💾
First, install Rust & Cargo
These are the tools needed to build Rust-based CLIs like soundness-cli.
curl sh.rustup.rs -sSf | sh
Then restart your terminal or run:
source $HOME/.cargo/env
2/ You’ll need build tools too
Rust needs pkg-config and OpenSSL headers to compile most projects.
sudo apt update && sudo apt install pkg-config libssl-dev build-essential