unable to install pg gem

后端 未结 20 952
不知归路
不知归路 2020-12-02 04:54

I tried using gem install pg but it doesn\'t seem to work.

gem install pg gives this error

Temporarily enhancing PATH to in         


        
20条回答
  •  青春惊慌失措
    2020-12-02 04:54

    @Winfield said it:

    The pg gem requires the postgresql client libraries to bind against. This error usually means it can't find your Postgres libraries. Either you don't have them installed or you may need to pass the --with-pg-dir= to your gem install.

    More than that, you only need --with-pg-config= to install it.

    On a Mac

    If, by any chance, you also installed postgres through the website bundle on mac, it will be on somewhere like /Applications/Postgres.app/Contents/Versions/9.3/bin.

    So, either you pass it on the gem install:

    gem install pg -- --with-pg-config=/Applications/Postgres.app/Contents/Versions/9.3/bin/pg_config
    

    Or you set the PATH properly. Since that might be too much, to temporarily set the PATH:

    export PATH=%PATH:/Applications/Postgres.app/Contents/Versions/9.3/bin/
    

提交回复
热议问题