Last active
August 29, 2015 14:09
-
-
Save thanhtam92/c3f13c5e068331f0647f to your computer and use it in GitHub Desktop.
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
When building native ruby gems, sometimes you'll get an error containing "ruby extconf.rb". This is often caused by missing dev libraries for the gem you're installing, or even ruby itself. Do you have apt installed on your machine? If not, I'd recommend installing it, it's a quick and easy way to get a lot of dev libraries. If you see people suggest installing "libmagick9-dev", that's an apt package that you'd install with: | |
$ sudo apt-get install libmagickwand-dev | |
or on centOs: | |
$ yum install ImageMagick-devel | |
On mac, you can use Homebrew: | |
$ brew install imagemagick |
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
error don't start mysqld: | |
==> delete /var/lib/mysql/ibdata1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment