Mac OSX上pg gem的安装问题

做一个rails应用,说好的用mysql结果后端最后用了postgresql,在mac上配置出了各种问题。

使用bundle install安装包,发现缺少pg无法安装,在网上找了一圈解决方案,发现原来我用brew安装PostgresSQL不好解决问题,于是改用直接的发行包。从http://postgresapp.com/上下载应用,直接拖拽安装。

在安装pg gem时使用命令

env ARCHFLAGS="-arch x86_64" gem install pg -- --with-pg-config=/Applications/Postgres93.app/Contents/MacOS/bin/pg_config

注意,如果你应用的名称,原来为Postgres,现在已经改名为Postgres93

再次安装pg gem

gem install pg

成功





你可能感兴趣的:(Rails,postgresSQL)