使用Ubuntu安装pg gem

4
我正在尝试在一个新的rails应用程序中安装pg gem,但我一直收到相同的错误信息:
Building native extensions.  This could take a while...
ERROR:  Error installing pg:
    ERROR: Failed to build gem native extension.

        /home/arthur/.rvm/rubies/ruby-1.9.2-p320/bin/ruby extconf.rb --with-pg-lib=/usr/lib
checking for pg_config... yes
Using config values from /usr/bin/pg_config
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for pg_config_manual.h... yes
checking for PQconnectdb() in -lpq... no
checking for PQconnectdb() in -llibpq... no
checking for PQconnectdb() in -lms/libpq... no
Can't find the PostgreSQL client library (libpq)
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

我已经尝试了这个问题中的所有方法:如何在Ubuntu上安装PostgreSQL的pg gem? 但是对我来说都没有起作用。

顺便提一下,我的ruby版本是1.9.2,Rails版本是3.2。

谢谢!


请查看此链接,希望能有所帮助。 - Rodrigo Oliveira
请在您的帖子中附上Ruby和Rails版本。 - tokhi
你有检查输出建议的mkmf.log文件吗?它显示了什么? - davidrac
Rodrigo,它没有起到帮助作用。 stsd,刚刚编辑了帖子。对此感到抱歉。 davidrac,与pg gem相关的任何文件夹中都没有mkmf.log文件。您知道它应该在哪里吗? - Arthur Camara
1
请检查文件/usr/include/postgresql/libpq-fe.h是否存在,并且导出函数PQconnectdb - cdesrosiers
1
你需要在本地开发环境中安装PostgreSQL,运行sudo apt-get install postgresql-9.1,然后再尝试安装pg gem。 - Thanh
1个回答

1
安装 PostgreSQL 9,然后安装你的 gem。
sudo apt-get install postgresql libpq-dev

现在运行。
gem install pg

然后

bundle install


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接