Dynaframe3 icon indicating copy to clipboard operation
Dynaframe3 copied to clipboard

no usable version of libssl was found

Open ingerson opened this issue 1 year ago • 1 comments

Installed Dynaframe 2 on Raspberry pi3. When trying to start it aborts with the error 'No usable version of libssl was found,

ingerson avatar Aug 04 '24 04:08 ingerson

When encountering the error “No usable version of libssl was found” on a Raspberry Pi 3 after installing Dynaframe 2, you can try the following steps to resolve the issue:

Check Installed Version: First, check the version of libssl installed on your Raspberry Pi 3. You can do this by running: dpkg -l | grep libssl

This command will list all installed packages that include libssl in their names. Install or Update libssl: If the installed version is not compatible with Dynaframe 2, you might need to install or update the libssl package. You can install libssl1.0.0 by running: sudo apt-get install libssl1.0.0

Alternatively, you can try installing the latest version of libssl: sudo apt-get install libssl1.1

SitzPatrick avatar Jan 16 '25 02:01 SitzPatrick