我发现了一个错误:
sudo gem install mysql2
Building native extensions. This could take a while...
ERROR: Error installing mysql2:
ERROR: Failed to build gem native extension.
/usr/bin/ruby1.8 extconf.rb
checking for rb_thread_blocking_region()... no
checking for mysql.h... no
checking for mysql/mysql.h... no
-----
mysql.h is missing. please check your installation of mysql and try again.
-----
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/usr/bin/ruby1.8
--with-mysql-config
--without-mysql-config
Gem files will remain installed in /var/lib/gems/1.8/gems/mysql2-0.2.6 for inspection.
Results logged to /var/lib/gems/1.8/gems/mysql2-0.2.6/ext/mysql2/gem_make.out我试过:
again
页面。
我怎么才能解决这个问题?
发布于 2012-02-22 17:50:44
您需要在安装libmysqlclient-dev gem之前安装mysql2:
sudo apt-get install libmysqlclient-dev
gem install mysql2这应该可以在最新的Ubuntu版本上解决这个问题。
发布于 2013-05-24 08:59:19
感谢安德烈·施威瑟夫
sudo apt-get install libmysqlclient-dev
gem install mysql2
..
bundle update
bundle install完了!
发布于 2014-09-05 13:49:03
它需要安装mysql开发包。
yum install mysql-develhttps://stackoverflow.com/questions/5219855
复制相似问题