时间:2021-07-01 10:21:17 帮助过:18人阅读
在Ubuntu系统中,Ruby on Rails环境中,安装MySQL后,连接数据库会出错,经常出现如下信息:Uninitialized Constant MysqlCompat
在Ubuntu系统中,Ruby on Rails环境中,,安装MySQL后,连接数据库会出错,经常出现如下信息:
Uninitialized Constant MysqlCompat::MysqlRes
具体处理方式是,先删除安装好的MYSQL:
sudo gem uninstall mysql
然后执行如下代码:
export ARCHFLAGS="-arch i386 -arch x86_64"
sudo gem install --no-rdoc --no-ri mysql -- --with-mysql-dir=/usr/local/mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
然后,这个问题就解决了!