I tried to run my project, using Prisma, everything was good until I run it.
It throw me an error:
“Error: libssl.so.1.1: cannot open shared object file: No such file or directory”
Any solution? Thanks.
I tried to run my project, using Prisma, everything was good until I run it.
It throw me an error:
“Error: libssl.so.1.1: cannot open shared object file: No such file or directory”
Any solution? Thanks.
In this case:
sed -i 's/];/ pkgs.openssl&/' replit.nix
(I think…)
Thanks for your help, it did not work, I think I will use sequelize instead
replit.nix
file, before the final }
:env = {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.openssl_1_1.out ];
};
it work!!! thank you so much
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.