From 2d3ec8b8738b52535b4d435aaf70335c075b9c38 Mon Sep 17 00:00:00 2001 From: Tuna <61174959+BareTuna@users.noreply.github.com> Date: Thu, 6 Jul 2023 23:01:22 -0600 Subject: [PATCH] Add fix for libcrypto error in FAQ --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index bef6a77..65e0605 100644 --- a/README.md +++ b/README.md @@ -24,3 +24,7 @@ You can now find the compiled version of Aseprite in the `output/aseprite/build/ ## FAQ If you get the following error when running Aseprite: `./aseprite: error while loading shared libraries: libdeflate.so.0: cannot open shared object file: No such file or directory`, make sure you have libdeflate installed on your system. Please run `sudo apt install -y libdeflate0 libdeflate-dev` + +If you get the following error: `./aseprite: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory`, you'll want to install the OpenSSL 1.1 package/library. You may have only OpenSSL 3.x installed, meanwhile Aseprite still uses the v1.1 library. +* On Arch / Arch based distros, run `sudo pacman -Syu openssl-1.1` +* On Ubuntu try: `sudo apt install -y libssl1.1`