Add fix for libcrypto error in FAQ

This commit is contained in:
Tuna
2023-07-06 23:01:22 -06:00
committed by GitHub
parent c4216126fa
commit 2d3ec8b873

View File

@@ -24,3 +24,7 @@ You can now find the compiled version of Aseprite in the `output/aseprite/build/
## FAQ ## 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 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` `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`