无法为 Rails 项目安装 mysql2 gem

Posted

技术标签:

【中文标题】无法为 Rails 项目安装 mysql2 gem【英文标题】:Cannot install mysql2 gem for Rails project 【发布时间】:2017-09-17 07:34:52 【问题描述】:

我已经查看并尝试了 ***.com 上有关该主题的所有内容,但仍然无法弄清楚...

当我“gem install mysql2”时出现权限错误。当我“sudo gem install mysql2”时,我得到以下信息:

    Teds-MacBook-Pro:~ tedmartin$ sudo gem install mysql2
Building native extensions.  This could take a while...
ERROR:  Error installing mysql2:
    ERROR: Failed to build gem native extension.

    current directory: /Users/tedmartin/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/mysql2-0.4.5/ext/mysql2
/Users/tedmartin/.rbenv/versions/2.4.1/bin/ruby -r ./siteconf20170420-50202-1nekuvd.rb extconf.rb
checking for rb_absint_size()... yes
checking for rb_absint_singlebit_p()... yes
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for rb_thread_blocking_region()... no
checking for rb_wait_for_single_fd()... yes
checking for rb_hash_dup()... yes
checking for rb_intern3()... yes
checking for rb_big_cmp()... yes
-----
Using mysql_config at /usr/local/bin/mysql_config
-----
checking for mysql.h... yes
checking for SSL_MODE_DISABLED in mysql.h... yes
checking for SSL_MODE_PREFERRED in mysql.h... yes
checking for SSL_MODE_REQUIRED in mysql.h... yes
checking for SSL_MODE_VERIFY_CA in mysql.h... yes
checking for SSL_MODE_VERIFY_IDENTITY in mysql.h... yes
checking for errmsg.h... yes
checking for mysqld_error.h... yes
-----
Don't know how to set rpath on your system, if MySQL libraries are not in path mysql2 may not load
-----
-----
Setting libpath to /usr/local/Cellar/mysql-connector-c/6.1.9/lib
-----
creating Makefile

current directory: /Users/tedmartin/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/mysql2-0.4.5/ext/mysql2
make "DESTDIR=" clean

current directory: /Users/tedmartin/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/mysql2-0.4.5/ext/mysql2
make "DESTDIR="
compiling client.c
compiling infile.c
compiling mysql2_ext.c
compiling result.c
compiling statement.c
linking shared-object mysql2/mysql2.bundle
ld: library not found for -l-lpthread
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [mysql2.bundle] Error 1

make failed, exit code 2

Gem files will remain installed in /Users/tedmartin/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/gems/mysql2-0.4.5 for inspection.
Results logged to /Users/tedmartin/.rbenv/versions/2.4.1/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-15/2.4.0-static/mysql2-0.4.5/gem_make.out

任何有想法、建议、提示、修复等的人......我将不胜感激。

谢谢!

【问题讨论】:

不知道为什么有人对你投了反对票。你有没有在你的mac上安装mysql?与其他 gem 不同,它不仅仅是捆绑安装的情况,您可以通过从终端运行 mysql -u root 并查看它是否识别该命令来检查。如果不去 mysql 站点并按照 OSX 的设置说明进行操作 谢谢迈克。我已经用 Homebrew 安装了 mysql 并下载了社区版......我也不知道为什么有人不赞成我......哦,匿名互联网的乐趣 :) C'est la vie!当您尝试从终端运行 mysql -u root 时会发生什么?它能识别命令吗? 检查this@TedMartin。 【参考方案1】:

这在 macOS Catalina 上对我有用:

确保您已安装 openssl。如果没有:

brew install openssl

然后进行 gem 安装:

gem install mysql2 -- --with-opt-dir="$(brew --prefix openssl)"

【讨论】:

【参考方案2】:

疯了 2 小时后它为我工作了

    卸载 Ruby 并安装 Ruby v2.6.6 以管理员身份运行命令行gem install mysql2 安装导轨gem install rails 创建新项目rails new my_proj -d mysql

在 Windown 中 100% 工作

【讨论】:

【参考方案3】:

我在 Mojave 上遇到了同样的问题,以前的答案都没有对我有用,但是这个 Github 问题comment 中提到的命令确实有效

第 1 步。

brew install openssl

第 2 步。

export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/

在我的例子中,我已经安装了openssl,所以真正解决问题的是导出命令。

【讨论】:

这也是我的问题。有openssl,但需要导出。谢谢!【参考方案4】:
    确保通过 Homebrew 在 Mac 上安装了 openssl。
brew install openssl
    安装 mysql2 gem。
gem install mysql2 -v '0.5.2' -- --with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include
    如果bug没有修复,上面这个解决方案是最后一个
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /

如果上述方法不起作用,另一种解决方案。

cd /usr/local/Cellar/openssl/1.0.2s/lib/

sudo cp libssl.1.0.0.dylib libcrypto.1.0.0.dylib /usr/local/lib

【讨论】:

只有最后一个解决方案对我有用。并且 libssl.a、libcrypto.a 也应该被复制。解决方案 2 有助于运行 gem install,但以下 bundle install 仍然失败。【参考方案5】:

从this question 的答案中,运行以下对我有用

gem install mysql2 --source 'https://rubygems.org/' -- --with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include

【讨论】:

这是单行解决方案的最佳答案【参考方案6】:

试试这个:

which mysql

然后,使用 output-result 使用现有的 mysql 安装目录安装 gem:

gem install mysql2 -- --with-mysql-dir=<mysql-installation-directory>

【讨论】:

以上是关于无法为 Rails 项目安装 mysql2 gem的主要内容,如果未能解决你的问题,请参考以下文章

错误:安装 mysql2 时出错:错误:无法构建 gem 原生扩展

无法安装 mysql2 gem

错误:安装 mysql2 时出错:错误:无法在 AWS Linux 上构建 gem 原生扩展

使用 rvm 在 Snow Leopard for Rails 3 上安装 mysql2 gem

gem mysql2未安装在rails上的ruby上[重复]

安装 Mysql 2 gem 失败