mortenmoulder / TwitchClipper

Download Twitch.tv clips with a lot of customization
MIT License
24 stars 3 forks source link

No usable version of libssl was found #12

Open anibyl opened 4 months ago

anibyl commented 4 months ago

Running it on Fedora 40 gives me this error

$ ./TwitchClipper 
No usable version of libssl was found
Aborted (core dumped)

I was able to fix it by reassembling the binary with a newer .NET. In TwitchClipper.scproj, change net5.0 to a newer one, like:

<TargetFramework>net8.0</TargetFramework>

Then rebuild:

$ dotnet publish --os linux

I hope this helps someone. @mortenmoulder you might want to update the project, thank you for your work!