Rails error installing mysql2 (mysql2-0.3.20)

后端 未结 5 1351
无人共我
无人共我 2021-02-04 04:15

I am trying to get a rails project up and running on my local machine. When I do bundle install

Fetching mysql2 0.3.20
Installing mysql2 0.3.20 with native ext         


        
5条回答
  •  长发绾君心
    2021-02-04 05:11

    I just ran into this problem today. mysql got updated recently, so what worked for me was:

    brew install mysql@5.6
    brew link mysql@5.6 --force
    bundle install
    

    Alternatively, I did not try this solution, but it seems to have worked for other people.

    Installing Mysql 2 gem fails

提交回复
热议问题