gpt4 book ai didi

ruby - 在 mac 上安装 mysql2 gem rails

转载 作者:太空宇宙 更新时间:2023-11-03 16:32:52 24 4
gpt4 key购买 nike

我正在尝试执行 mysql2 的 gem 安装,但看起来它没有找到 mysql 的安装位置。我在我的 mac 上使用 XAMPP 堆栈安装了 mysql。我阅读了其他帖子,但没有结果。

sudo  gem install mysql2 -- --with-mysql-config=/Applications/XAMPP/xamppfiles/bin/mysql_config 
Building native extensions. This could take a while...
ERROR: Error installing mysql2:
ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb --with-mysql-config=/Applications/XAMPP/xamppfiles/bin/mysql_config
checking for rb_thread_blocking_region()... no
checking for rb_wait_for_single_fd()... 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=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
--with-mysql-config


Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/mysql2-0.3.11 for inspe

最佳答案

在构建 native 扩展时,gem 正在寻找 mysql header 。这些可能在 /Application/XAMPP/... 中,您可以通过以下参数将它们指向 gem -

--with-mysql-dir=/path/to/mysql \
--with-mysql-include=/path/to/mysql/headers \
--with-mysql-lib=/path/to/lib \
--with-mysql-config=/path/to/configs

或者,如果不需要使用 XAMPP 的 mysql,您可以通过 homebrew 获取 mysql。然后-

brew install mysql 
gem install mysql2

我更喜欢第二种方式。因为我不知道 XAMPP 对其捆绑的 mysql 做了什么更改,所以它更清晰,也更容易混淆;)

以后如果你需要在 linux vps 上设置这样的 gem,并遇到类似的问题,记得安装 -dev 包。例如。用于 mysql 的 libmysqlclient-dev

关于ruby - 在 mac 上安装 mysql2 gem rails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12811489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com