运行捆绑包安装后,我收到了这个错误。我尝试过编辑/etc/paths文件,但仍然没有成功。
Gem::Ext::BuildError:ERROR:未能生成Gem本机扩展。
/Users/adam/.rvm/rubies/ruby-2.1.5/bin/ruby -r ./siteconf20150224-4249-ltvvu1.rb extconf.rb
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for rb_thread_blocking_region()... yes
checking for rb_wait_for_single_fd()... yes
checking for rb_hash_dup()... yes
checking for rb_intern3()... yes
-----
Using mysql_config at /Applications/MAMP/Library/bin/mysql_config
-----
checking for mysql.h... no
checking for mysql/mysql.h... yes
checking for errmsg.h... no
-----
errmsg.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=/Users/adam/.rvm/rubies/ruby-2.1.5/bin/ruby
--with-mysql-dir
--without-mysql-dir
--with-mysql-include
--without-mysql-include=${mysql-dir}/include
--with-mysql-lib
--without-mysql-lib=${mysql-dir}/lib
--with-mysql-config
--without-mysql-config
extconf failed, exit code 1
Gemfile
ruby-2.1.5
gem 'rails', '4.1.7'
gem 'mysql2'
/etc/路径
/Applications/MAMP/Library/bin
/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
这与我的MySql安装有关吗?
尝试:
gem install mysql2 -- --with-mysql-config=/Applications/MAMP/Library/bin/mysql_config
我已经修复了这个问题,只需使用现有配置中的mysql-config运行geminstall。
gem install mysql2 -v {mysql2_gem_version} -- --with-mysql-config=/usr/local/Cellar/mysql/{mysql_gem_version}/bin/mysql_config
gem install mysql2 -v '0.3.17' -- --with-mysql-config=/usr/local/Cellar/mysql/5.6.21/bin/mysql_config
试试这个:
首先使用以下命令添加以下依赖项:
sudo apt-get install mysql-server-5.5
sudo apt-get install mysql-client libmysqlclient-dev
sudo apt-get install libmysqld-dev libmysqlclient-dev mysql-client
最后在Gemfile中添加gem 'mysql2', '~> 0.3.16'
并捆绑安装
非主题:
当我将我的应用程序部署到生产(Linux服务器)时,我遇到了这个问题
我不得不安装这个来修复丢失的宝石
百胜安装mysql-devel