Reputation: 2151
I'm pretty new to rails and I'm trying to get an application working. It's currently using ffi and typhoeus which need a version of libcurl. How can I install a version of libcurl for Windows 7.
Thanks!
Upvotes: 3
Views: 1803
Reputation: 76784
Answer that worked for me was:
/bin
libcurl_x64.dll
(it may be just libcurl.dll
)libcurl.dll
if it has the _x64
suffix/bin
directory of your Ruby installatioIt should work after this
Upvotes: 0
Reputation: 354
There's one option I implemented but couldn't install only libcurl packages. Cygwin provides lots of the packages and libraries used for development in Linux for being installed on Windows (included curl, libcurl, libcurl-dev, etc).
It worked for me in windows 7 64 bit OS.
Here's another solution for that specific gem
https://github.com/typhoeus/typhoeus/pull/151/files
Greetings.
Upvotes: 2