簡體   English   中英

Rails-MySQL2安裝錯誤

[英]Rails - mysql2 installation error

我最近安裝了rvm,以在當前系統中將rails5和rails3.x版本一起使用。 當我嘗試創建新的rails5應用程序時,出現以下錯誤

Could not find proper version of railties (3.2.13) in any of the sources
Run `bundle install` to install missing gems.

當我嘗試進行捆綁安裝時,我陷入了困境

gem install mysql2 -v '0.3.11'
Building native extensions.  This could take a while...
/home/himanth/.rvm/rubies/ruby-2.3.1/lib/ruby/site_ruby/2.3.0/rubygems/ext/builder.rb:73: warning:     Insecure world writable dir /home/himanth/.rvm/gems in PATH, mode 040777
ERROR:  Error installing mysql2:
ERROR: Failed to build gem native extension.

/home/himanth/.rvm/rubies/ruby-2.3.1/bin/ruby extconf.rb
checking for rb_thread_blocking_region()... no
checking for rb_wait_for_single_fd()... yes
checking for mysql.h... yes
checking for errmsg.h... yes
checking for mysqld_error.h... yes
creating Makefile

make "DESTDIR=" clean

make "DESTDIR="
compiling mysql2_ext.c
In file included from ./client.h:11:0,
             from ./mysql2_ext.h:39,
             from mysql2_ext.c:1:
/home/himanth/.rvm/rubies/ruby-2.3.1/include/ruby-2.3.0/ruby/backward/rubysig.h:14:2: warning: #warning rubysig.h is obsolete [-Wcpp]
In file included from ./mysql2_ext.h:39:0,
             from mysql2_ext.c:1:
./client.h: In function 'rb_thread_blocking_region':
./client.h:23:3: error: 'TRAP_BEG' undeclared (first use in this function)
./client.h:23:3: note: each undeclared identifier is reported only once for each function it appears in
./client.h:25:3: error: 'TRAP_END' undeclared (first use in this function)
mysql2_ext.c: At top level:
./client.h:16:1: warning: 'rb_thread_blocking_region' defined but not used [-Wunused-function]
make: *** [mysql2_ext.o] Error 1

make failed, exit code 2

Gem files will remain installed in /home/himanth/.rvm/gems/ruby-2.3.1@rails5/gems/mysql2-0.3.11 for inspection.
Results logged to /home/himanth/.rvm/gems/ruby-2.3.1@rails5/extensions/x86_64-linux/2.3.0/mysql2-0.3.11/gem_make.out

An error occurred while installing mysql2 (0.3.11), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.11'` succeeds before bundling.

堅持了很長時間,任何幫助將不勝感激。

從終端嘗試以下操作:

對於Ubuntu:

sudo apt-get install mysql-client libmysqlclient-dev
sudo gem install mysql2

對於Mac:

brew install mysql
sudo gem install mysql2

請嘗試以下方法:

gem install rails

之后安裝mysql服務器

sudo apt-get install mysql-client libmysqlclient-dev

然后bundle install

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM