From 40bb390371366bfd489fd1d50620c5bbed385f3e Mon Sep 17 00:00:00 2001 From: Kevin Boos Date: Mon, 11 Mar 2024 13:50:19 -0700 Subject: [PATCH] Update README to clarify Linux build instructions --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 357a3ba4..25fcc364 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,12 @@ Robrix is a Matrix chat client written in Rust to demonstrate the functionality First, [install Rust](https://www.rust-lang.org/tools/install). -Then, on desktop platforms (macOS, Linux, Windows), simply run: +Then, install the required native libraries. For example, on Linux: +```sh +sudo apt-get install libsqlite3-dev libssl-dev +``` + +Then, on a standard desktop platform (macOS, Linux, Windows), simply run: ```sh cargo run -- 'USERNAME' 'PASSWORD' ['HOMESERVER_URL'] ```