【问题标题】:gem install pg giving Gem::Ext::BuildError: ERROR: Failed to build gem native extension in ruby '2.2.3' and 'rails', '4.2.7.1' in ubuntu 18.04 LTSgem install pg 给出 Gem::Ext::BuildError: ERROR: Failed to build gem native extension in ruby​​ '2.2.3' and 'rails', '4.2.7.1' in ubuntu 18.04 LTS
【发布时间】:2020-12-11 20:17:32
【问题描述】:

我正在尝试建立一个具有 ruby​​ 2.2.3 和 rails 版本 4.2.7.1 的 rails 项目。它使用 PostgreSQL 作为数据库。我可以在 GemFile 中看到 gem 'pg' 条目。我做了 bundle install 来安装依赖项,但是在安装 pg gem 时,它给了我以下错误。我的 ubuntu 18.04 LTS 系统上没有安装 postgreSQL。这可能是我收到此错误的原因。请帮忙。我得到的错误:

**

**Fetching pg 1.2.3
Installing pg 1.2.3 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
    current directory: /home/pc-123/.rvm/gems/ruby-2.2.3/gems/pg-1.2.3/ext
/home/pc-123/.rvm/rubies/ruby-2.2.3/bin/ruby -I /home/pc-123/.rvm/rubies/ruby-2.2.3/lib/ruby/site_ruby/2.2.0 -r ./siteconf20200822-841-6si3xn.rb
extconf.rb
checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
 --with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** 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.
Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/home/pc-123/.rvm/rubies/ruby-2.2.3/bin/$(RUBY_BASE_NAME)
    --with-pg
    --without-pg
    --enable-windows-cross
    --disable-windows-cross
    --with-pg-config
    --without-pg-config
    --with-pg_config
    --without-pg_config
    --with-pg-dir
    --without-pg-dir
    --with-pg-include
    --without-pg-include=${pg-dir}/include
    --with-pg-lib
    --without-pg-lib=${pg-dir}/lib

**

【问题讨论】:

  • 安装 PostGreSQL 会很聪明。另外,您的解释器使用的是什么 Ruby 版本?那里不匹配,您可能会遇到问题。

标签: ruby-on-rails ruby postgresql rubygems


【解决方案1】:

您必须安装libpq-dev 软件包。您正在使用 Ubuntu:

sudo apt install libpq-dev

【讨论】:

    【解决方案2】:

    安装 PostGreSQL 会很聪明。

    这取决于您的解释器使用的 Ruby 版本。那里不匹配,您可能会遇到问题。使用相同的版本将解决您的问题。

    【讨论】:

      猜你喜欢
      • 2016-10-02
      • 2021-07-06
      • 2014-03-03
      • 1970-01-01
      • 1970-01-01
      • 2019-04-18
      • 2020-11-08
      • 2021-08-14
      • 2021-02-08
      相关资源
      最近更新 更多