Please install mysql adapter 'gem install activerecord-mysql-adapter'

前端 未结 16 1412
挽巷
挽巷 2020-12-28 12:23

I\'m having trouble finding a solution to this problem. I\'m getting the error:

Please install the mysql adapter: \'gem install activerecord-mysql-adapter\'
         


        
16条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-28 12:53

    This might be late but bundle install was installing 0.4.0 So I tried to edit the gem file and I replace mysql2 with

    gem 'mysql2', "~>0.3.11"

    and then

    bundle install

    in the terminal (This will install mysql2 0.3.11 and not the last version) I think active record have problems working with the last version. Well I hope it helps

提交回复
热议问题