Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

when i open unity and make something project then the error is coming that " no usable version of libssl was found "

i am new to linux ubuntu . i am using ubuntu 22.04 . recently i downloaded unity and it is showing error " no usable version of libssl was found " How to fix this PLease help me !! i tried to find solution for this problem and i found nothing . ( i am using linux and i am new to linux ) .

like image 501
Donex Noob Avatar asked Sep 05 '25 11:09

Donex Noob


1 Answers

You need to download the missing libssl library and install it

$ wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5_amd64.deb
$ sudo dpkg -i libssl1.0.0_1.0.2n-1ubuntu5_amd64.deb
like image 84
rainman Avatar answered Sep 08 '25 03:09

rainman