PostgreSQLをdmgでインストールした時に、gemでPostgreSQLのライブラリを
インストーしようと思ったら、以下のエラーがでた。
>gem install pg
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/pg_config
pg_configが見つからないらしい。
「--with-pg-config=/path/to/pg_config」とあるので、試してみる。
>gem install pg --with-pg-config=/Library/PostgreSQL/9.3/bin/pg_config
ERROR: While executing gem ... (OptionParser::InvalidOption)
invalid option: --with-pg-config=/Library/PostgreSQL/9.3/bin/pg_config
今度は、InvalidOptionとなる。
色々と調べた結果sourceからビルドした場合は、上記で上手くいくらしい。
けど、私は、dmgでインストールしたんです。
で、最終的な結果は、以下でいけました。
gem install pg -- --with-pg-config=/Library/PostgreSQL/9.3/bin/pg_config