Created
November 11, 2010 12:50
-
-
Save fabioyamate/672438 to your computer and use it in GitHub Desktop.
installing curb on ubuntu 10.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# installing curb gem on Ubuntu require libcurl | |
sudo apt-get install libcurl3-dev | |
Or new version, but it conflicts if some libraries. | |
sudo apt-get install libcurl4-dev | |
(some other packages libcurl4-openssl-dev libcurl4-gnutls-dev) | |
gem install curb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks buddy for this post