按照Heroku网站上的说明,我已安装Postgress.app
,已安装pg
gem,已安装data_mapper
,一切顺利。最后,尝试安装dm-sqlite-adapter并得到了这个:
sudo gem install dm-postgres-adapter
Fetching: data_objects-0.10.14.gem (100%)
Successfully installed data_objects-0.10.14
Fetching: do_postgres-0.10.14.gem (100%)
Building native extensions. This could take a while...
ERROR: Error installing dm-postgres-adapter:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
checking for main() in -lpq... yes
checking for libpq-fe.h... yes
checking for libpq/libpq-fs.h... yes
checking for postgres.h... yes
checking for mb/pg_wchar.h... no
*** 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=/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
--with-pgsql-server-dir
--without-pgsql-server-dir
--with-pgsql-server-include
--without-pgsql-server-include=${pgsql-server-dir}/include
--with-pgsql-server-lib
--without-pgsql-server-lib=${pgsql-server-dir}/
--with-pgsql-client-dir
--without-pgsql-client-dir
--with-pgsql-client-include
--without-pgsql-client-include=${pgsql-client-dir}/include
--with-pgsql-client-lib
--without-pgsql-client-lib=${pgsql-client-dir}/
--with-pqlib
--without-pqlib
Could not find PostgreSQL build environment (libraries & headers): Makefile not created
Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/do_postgres-0.10.14 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/gems/do_postgres-0.10.14/ext/do_postgres/gem_make.out
我也试过
sudo ARCHFLAGS="-arch x86_64" gem install dm-postgres-adapter
但结果相同。
我查看了gem_make.out并在最后找到了以下内容:
Could not find PostgreSQL build environment (libraries & headers): Makefile not created
有关尝试什么的建议吗?
答案 0 :(得分:0)
这是我能够弄清楚的。
错误消息,如无法找到某些标头或库,会产生误导。所有这些东西都被成功找到了,但是,正如mkmf.log所示,有很多解析错误。这意味着工具链中的某处出现了打嗝。我在Mac上,所以这可能是Xcode工具,Ruby版本或某些宝石的问题,或者其中任何一个因某些原因而无法合作......谁知道。我在Stackoverflow上看到某个有类似问题的人设法通过重新安装整个工具链来解决它。
我决定选择一条不同的道路。我在Nitrous.io上创建了一个Ruby盒子,到目前为止一切都工作了 - 我能够安装PostgreSQL和可怕的dm-postgres-adapter,以及我需要的所有其他宝石。经验有多大的不同。
它仍然无法解决运行Postgres.app并在本地计算机上使用Sinatra的问题,但我现在可以忍受它。也许有一天我会生气到足以爆破整个车辆工具链并重新安装它,但还没有,还没有......
答案 1 :(得分:0)
乌拉!我做的。解决方案非常简单:安装Ruby 2.1.1。然后dm-postgres-adapter安装完全没有问题。