无法安装在山狮皮克宝石(Can't install pg gem on Mountain L

2019-06-18 00:05发布

升级到山狮之后我一直有很多使用Rails的麻烦。

试图麻烦拍摄这些和互联网上搜索到现在为止我已经做了好几个小时以下,以确保我的系统拥有所有运行升级后轨的依赖:

  1. 我更新了我的家酿安装
  2. 我更新了我的RVM安装
  3. 我安装Xcode的命令行工具
  4. 我安装GCC 如前所述
  5. 我在我的Ruby的版本升级到

    红宝石1.9.2p290(2011-07-09的修订32553)[x86_64的-darwin10.8.0]

  6. 我的Rails版本被验证为3.2.6的Rails
  7. 我还发现,山狮有一些问题,所以Postgres的我看到了这个帖子 ,并发现我需要这一行添加到我的Bash配置文件:

     export PATH="/usr/local/bin:/usr/bin:$PATH" 

现在,我去我的Rails应用程序,用于我升级之前在Snow Leopard上运行正常,当我运行rails s在命令行中,我得到了以下错误:

AM@~/Documents/RailsWS/app0815 >gem install pg
 Building native extensions.  This could take a while...
 ERROR:  Error installing pg:
 ERROR: Failed to build gem native extension.
 /Users/AM/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb
 checking for pg_config... yes
 Using config values from /usr/bin/pg_config
 checking for libpq-fe.h... *** 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
--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=/Users/AM/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
--with-pg
--without-pg
--with-pg-dir
--without-pg-dir
--with-pg-include
--without-pg-include=${pg-dir}/include
--with-pg-lib
--without-pg-lib=${pg-dir}/lib
--with-pg-config
--without-pg-config
--with-pg_config
--without-pg_config
 /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:368:in `try_do': 
 The complier failed to generate an executable file. (RuntimeError)
 You have to install development tools first.
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:452:in `try_cpp'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:853:in `block in   find_header'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:693:in `block in checking_for'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:280:in `block (2  levels) in postpone'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:280:in `block in postpone'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:276:in `postpone'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:692:in `checking_for'
from /Users/AM/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/mkmf.rb:852:in `find_header'
from extconf.rb:41:in `<main>'


 Gem files will remain installed in /Users/AM/.rvm/gems/ruby-1.9.2-p290/gems/pg-0.14.1 for inspection.
 Results logged to /Users/AM/.rvm/gems/ruby-1.9.2-p290/gems/pg-0.14.1/ext/gem_make.out

当我去到Rails应用程序,并尝试bundle install失败的PG安装。

Answer 1:

从下载安装PostgreSQL的http://www.enterprisedb.com/products-services-training/pgdownload#osx

然后让你的路径看起来是这样的:

PATH=$PATH:/Library/PostgreSQL/9.0/bin/ gem install pg

这会做!

注:请在路径正确指定你的PostgreSQL安装的版本。

UPDATE(2015年10月11日)(来自Heroku的 )

在与家酿OS X:

  1. 使用安装PostgreSQL:

    brew install postgresql

  2. 然后使用安装gem:

    gem install pg -- --with-pg-config=/usr/local/bin/pg_config

在与MacPorts的OS X:

gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config

希望这可以帮助!



Answer 2:

作为banditKing他回答说,需要告诉宝石在哪里可以找到Postgres的二进制文件。 您可以使用附带的Heroku从(优秀且容易postgres.app二进制文件http://postgresapp.com ),而不是安装的EnterpriseDB的版本的宝石。 EnterpriseDB的该版本是伟大的,但一个棘手安装一个开发机。

下载Postgres.app您的系统上,并添加内部bin目录到您的路径。 我把它放在/Applications/Postgres.app ,所以我用

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

为我工作在10.8.2和Ruby 1.9.3,PG-0.14.1和Xcode的CLI工具



Answer 3:

或者,使用Postgres的应用。 国际海事组织,这是起床和PostgreSQL的和Rails在Mac上运行的最简单和最快的方式。

有关详细说明: http://blog.parsalabs.com/blog/2013/09/14/installing-postgresql-don-mac-os-x-and-using-it-as-your-rails-apps-database/



Answer 4:

安装后,小牛bundle update是在PG宝石抛出一个错误。

我用啤酒来管理我的套餐和PostgreSQL已经安装了,但我仍然是越来越“无pg_config”的错误。

此修复程序是刚brew uninstall postgresql ,然后brew install postgresql 。 这之后,我立刻能够成功运行bundle update



文章来源: Can't install pg gem on Mountain Lion