From fbd376df4349f84eac53ae2c4330fb6575e2ff3c Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Tue, 1 Mar 2022 22:11:36 -0800 Subject: [PATCH] docs: mention that `libssl-dev` and `openssl` are needed for installation Closes #75. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 60fc91204..21d71b06c 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,13 @@ On most distributions, you'll need to install from source. #### From source -Run: +First make sure that you have the `libssl-dev` and `openssl` packages installed +by running something like this: +```shell script +sudo apt-get install libssl-dev openssl +``` + +Now run: ```shell script cargo install --git https://github.com/martinvonz/jj.git ```