Reputation: 647
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?
Upvotes: 6
Views: 27659
Reputation: 146
Actually - what fixed the problem was installing typhoeus:
gem install typhoeus
Or whatever package is actually needed for libcurl.
Upvotes: 1
Reputation: 5145
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
Upvotes: 14