Problem encountered on https://dotnet.microsoft.com/learn/aspnet/hello-world-tutorial/create
Operating System: linux
I used the following command:
dotnet new webApp -o myWebApp --no-https
I got the following error:
No usable version of libssl was found
Aborted
I'm using Void Linux and I have the following ssl/tls packages installed:
libressl-3.0.2_2
libressl-devel-3.0.2_2
libssl47-3.0.2_2
libtls19-3.0.2_2
Thanks!
I tried the following command and it seems to be working now:
ln -s /usr/lib/libssl.so.47.0.6 /usr/lib/libssl.so.1.0.0
I'm not sure if this will result in any problems later. Thanks for any help.
There's some more information at https://github.com/dotnet/runtime/issues/24869
I'm glad you found a solution. Please refer to the dependencies to ensure you've got all the required prerequisites.
FWIW, the dependencies link in the comment above does not actually list what the native dependencies for running dotnet on linux actually are.
Most helpful comment
I tried the following command and it seems to be working now:
ln -s /usr/lib/libssl.so.47.0.6 /usr/lib/libssl.so.1.0.0
I'm not sure if this will result in any problems later. Thanks for any help.