MySQL Install: ERROR: Failed to build gem native extension

前端 未结 14 1793
天涯浪人
天涯浪人 2020-11-28 19:23

I\'m trying to get MySQL installed to the latest version due to some installation going wrong somewhere along the line. I run the command gem install mysql and

14条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-28 20:00

    I had also forgotten to actually install MySQL in the first place. Following this guide helped a lot.

    http://www.djangoapp.com/blog/2011/07/24/installation-of-mysql-server-on-mac-os-x-lion/

    As well as adding these lines to my .profile:

    export PATH="/usr/local/mysql/bin:$PATH"
    alias mysql=/usr/local/mysql/bin/mysql
    alias mysqladmin=/usr/local/mysql/bin/mysqladmin
    

提交回复
热议问题