Created
February 20, 2012 17:58
-
-
Save trevorrowe/1870314 to your computer and use it in GitHub Desktop.
Installing the aws-sdk gem on EC2 (using the Amazon Linux AMI)
This file contains hidden or 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
sudo yum install -y gcc make \ | |
libxml2 libxml2-devel libxslt libxslt-devel \ | |
rubygems ruby-devel | |
sudo gem install nokogiri -- --with-xml2-lib=/usr/local/lib \ | |
--with-xml2-include=/usr/local/include/libxml2 \ | |
--with-xslt-lib=/usr/local/lib \ | |
--with-xslt-include=/usr/local/include | |
sudo gem install aws-sdk --no-ri --no-rdoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That didn't work for me, but a package in their repository did..
sudo yum install rubygem20-aws-sdk
https://forums.aws.amazon.com/thread.jspa?threadID=123511