2017-03-16 131 views
0

我试图创建MySQL作为数据库使用轨道不能安装mysql2使用宝石

我用下面的命令一个项目:

gem install mysql2 

我得到命令行下面的结果:

Building native extensions. This could take a while... 
ERROR: Error installing mysql2: 
    ERROR: Failed to build gem native extension. 

    /home/sample/.rbenv/versions/2.2.3/bin/ruby -r ./siteconf20170316-5426-f6rn3k.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 
checking for mysql_query() in -lmysqlclient... no 
----- 
mysql client is missing. You may need to 'apt-get install libmysqlclient-dev' or 'yum install mysql-devel', 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=/home/sample/.rbenv/versions/2.2.3/bin/$(RUBY_BASE_NAME) 
    --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 
    --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 

extconf failed, exit code 1 

Gem files will remain installed in /home/sample/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/mysql2-0.4.5 for inspection. 
Results logged to /home/sample/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/extensions/x86_64-linux/2.2.0-static/mysql2-0.4.5/gem_make.out 

还因为它提到mysql客户端丢失我试图安装提到的模块,但它没有解决。 任何人都可以为此提供解决方案吗?

+1

请安装'的apt-get安装的libmysqlclient-dev'然后尝试后安装'mysql'宝石 – ashvin

+0

是啊,我已经做到了我得到以下错误: E:莫非E:无法锁定管理目录(/ var/lib/dpkg /),你是root用户吗?不能锁定管理目录/ var/lib/dpkg/lock - – divya

+0

试用'sudo'命令 'sudo'意味着'超级用户做' – ashvin

回答

2
sudo apt-get install libmysqlclient-dev 

然后

gem install mysql2 
+0

谢谢,解决了问题 – divya

+0

@divya好。接受我的答案,如果它适合你。谢谢 – puneet18