Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README to clarify Linux build instructions #55

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README to clarify Linux build instructions
  • Loading branch information
kevinaboos committed Mar 11, 2024

Unverified

This user has not yet uploaded their public signing key.
commit 40bb390371366bfd489fd1d50620c5bbed385f3e
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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']
```