I am trying to execute rake db:create command. I get following error
Could not open library 'libcurl': libcurl: cannot open shared object file: No such file or directory.
Could not open library 'libcurl': libcurl: cannot open shared object file: No such file or directory.
Could not open library 'libcurl.so': libcurl.so: cannot open shared object file: No such file or directory
Can anyone help me with this issue?
Try to install curl
.
If it doesn't work, try the command ldconfig
(actualising libs)
If it doesn't work :
/usr/lib
find . | grep curl
, locate the .so file (eg like curl_path.so or latest libcurl.so.xx)ln -s {curl_path.so} /usr/lib/libcurl.so
ldconfig
Actually - what fixed the problem was installing typhoeus:
gem install typhoeus
Or whatever package is actually needed for libcurl.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With