Created
June 19, 2012 18:13
-
-
Save wbotelhos/2955683 to your computer and use it in GitHub Desktop.
Fix zlib load on Rails Install (Ubuntu)
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
gem install rails | |
# ERROR: Loading command: install (LoadError) | |
# cannot load such file -- zlib | |
# ERROR: While executing gem ... (NameError) | |
# uninitialized constant Gem::Commands::InstallCommand | |
sudo apt-get install zlib1g-dev | |
rvm reinstall 1.9.3 | |
rvm use 1.9.3 | |
gem install rails |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment