Installer mysql2 gem pour Ruby on Rails avec Mac OSX 10.6
j'ai un problème d'installation de la mysql2 gem.
c'est Ce qui arrive quand je fais gem install mysql2
:
Marks-MacBook-Pro:~ Mark$ gem install mysql2
Building native extensions. This could take a while...
ERROR: Error installing mysql2:
ERROR: Failed to build gem native extension.
/Users/useruser/.rvm/rubies/ruby-1.9.2-p136/bin/ruby extconf.rb
checking for rb_thread_blocking_region()... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lm... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lz... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lsocket... no
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lnsl... no
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lmygcc... no
checking for mysql_query() in -lmysqlclient... no
*** 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/useruser/.rvm/rubies/ruby-1.9.2-p136/bin/ruby
--with-mysql-config
--without-mysql-config
--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-mysqlclientlib
--without-mysqlclientlib
--with-mlib
--without-mlib
--with-mysqlclientlib
--without-mysqlclientlib
--with-zlib
--without-zlib
--with-mysqlclientlib
--without-mysqlclientlib
--with-socketlib
--without-socketlib
--with-mysqlclientlib
--without-mysqlclientlib
--with-nsllib
--without-nsllib
--with-mysqlclientlib
--without-mysqlclientlib
--with-mygcclib
--without-mygcclib
--with-mysqlclientlib
--without-mysqlclientlib
Gem files will remain installed in /Users/useruser/.rvm/gems/ruby-1.9.2-p136/gems/mysql2-0.2.6 for inspection.
Results logged to /Users/useruser/.rvm/gems/ruby-1.9.2-p136/gems/mysql2-0.2.6/ext/mysql2/gem_make.out
aussi quand j'utilise rails server
cela vient:
Could not find gem 'mysql2 (>= 0, runtime)' in any of the gem sources listed in your Gemfile.
8 réponses
Cette commande a fonctionné pour moi:
gem install mysql2 -- --srcdir=/usr/local/mysql/include
Je n'ai pas besoin de MySQL sur Mac OS X, parce que J'ai MySQL installé sur Vagrant box. Par conséquent, je viens d'installer mysql-connector-C.
brew install mysql-connector-c
gem install mysql2
suivre le commandement a fonctionné pour moi avec succès.
X. x.x = version de mysql2 que vous voulez installer.
gem install mysql2 -v 'x.x.x' -- --srcdir=/usr/local/mysql/include
La suite travaillé pour moi
brew install mysql
brew install mysql-connector-c
gem install mysql2
vous devrez spécifier quelques variables d'environnement supplémentaires pour installer cette gemme sur l'architecture 64 bits pour Mac OSX 10.6:
env ARCHFLAGS="-arch x86_64" gem install mysql2
si vous utilisez rvm, vous pouvez l'ajouter comme option par défaut dans le~/.rvmrc fichier:
rvm_archflags="-arch x86_64"
Si vous avez utilisé homebrew pour installer mysql, brew install mysql
,cela a fonctionné pour moi:
gem install mysql2 -v 'x.x.x' -- --with-mysql-config=/usr/local/Cellar/mysql/y.y.y/bin/mysql_config
X. x.x = version du joyau mysql2 que vous souhaitez installer
Y. Y. y = la version de mysql que vous avez installée ls /usr/local/Cellar/mysql
pour le trouver.
pour obtenir la version de mysql
brew info mysql
mysql: stable 5.7.19 (bottled)
...
/usr/local/Cellar/mysql/5.7.19 (322 files, 233MB) *
...
alors si vous voulez installer avec bundle:
bundle config build.mysql --with-mysql-config=/usr/local/Cellar/mysql/y.y.y/bin/mysql_config
j'ai eu exactement le même problème et les erreurs d'essayer d'installer mysql2. Je pensais que mon installation mamp de MySQL fonctionnerait bien et j'ai passé quelques heures à jouer avec paths pour que ça marche - pas de succès.
est finalement tombé sur ce post D'ALoR et installé une nouvelle version par homebrew - cependant - assurez-vous de suivre toutes les instructions de homebrew! J'ai manqué quelques étapes et perdu une heure de plus à traquer ce problème - Voici ceux instruction: https://stackoverflow.com/a/11061487/1241271
après L'installation réussie de MySQL, j'ai couru:sudo gem install mysql2
et cela a fonctionné comme un charme.
Espérons que cela aide quelqu'un de perdre plusieurs heures parce qu'ils ont négligé de lire les docs (newb erreur).