Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ruby-on-rails/62.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ruby on rails Rails pdf extract gem将sqlite作为依赖项,但I';我使用pg,因为Heroku需要它,所以捆绑包安装失败_Ruby On Rails_Ruby_Sqlite_Heroku_Bundler - Fatal编程技术网

Ruby on rails Rails pdf extract gem将sqlite作为依赖项,但I';我使用pg,因为Heroku需要它,所以捆绑包安装失败

Ruby on rails Rails pdf extract gem将sqlite作为依赖项,但I';我使用pg,因为Heroku需要它,所以捆绑包安装失败,ruby-on-rails,ruby,sqlite,heroku,bundler,Ruby On Rails,Ruby,Sqlite,Heroku,Bundler,我一直在尝试在Rails应用程序中安装gem。当我开始构建时,我会遇到这个错误,因为它使用sqlite作为依赖项: Fetching sqlite3 1.3.13 Installing sqlite3 1.3.13 with native extensions Gem::Ext::BuildError: ERROR: Failed to build gem native extension. current directory: /home/vagrant/.rbenv/version

我一直在尝试在Rails应用程序中安装gem。当我开始构建时,我会遇到这个错误,因为它使用sqlite作为依赖项:

Fetching sqlite3 1.3.13
Installing sqlite3 1.3.13 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    current directory: /home/vagrant/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/sqlite3-1.3.13/ext/sqlite3
/home/vagrant/.rbenv/versions/2.3.0/bin/ruby -r ./siteconf20180425-3298-14ft47q.rb extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'brew install sqlite3',
'yum install sqlite-devel' or 'apt-get install libsqlite3-dev'
and check your shared library search path (the
location where your sqlite3 shared library is located).
*** 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/vagrant/.rbenv/versions/2.3.0/bin/$(RUBY_BASE_NAME)
    --with-sqlite3-config
    --without-sqlite3-config
    --with-pkg-config
    --without-pkg-config
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib

To see why this extension failed to compile, please check the mkmf.log which can be found here:

  /home/vagrant/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/extensions/x86_64-linux/2.3.0-static/sqlite3-1.3.13/mkmf.log

extconf failed, exit code 1

Gem files will remain installed in /home/vagrant/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/sqlite3-1.3.13 for inspection.
Results logged to /home/vagrant/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/extensions/x86_64-linux/2.3.0-static/sqlite3-1.3.13/gem_make.out

An error occurred while installing sqlite3 (1.3.13), and Bundler cannot continue.
Make sure that `gem install sqlite3 -v '1.3.13'` succeeds before bundling.

In Gemfile:
  pdf-extract was resolved to 0.1.1, which depends on
    sqlite3

我是否仍然可以使用pdf摘录?Heroku不允许在生产中使用sqlite

非常感谢您的帮助

编辑:

对于那些在将来遇到这个问题的人:我试图破解gem,让它与postgres一起工作——这似乎是可行的,尽管它导致gem的性能下降。最终,我创建了一个完全独立的只使用api的应用程序,使用Elastic Beanstalk直接部署到AWS,而不是通过Heroku,这样应用程序就可以使用sqlite3,并调用api应用程序在我的原始应用程序中实现gem功能


这种方法很可能适用于在现有Rails应用程序中导致依赖性问题的任何GEM。

我将为您节省时间和麻烦,并查看其他库。有一个PDF文本提取的gem,叫做Heroku

如果无法安装依赖项,则无法使用具有该依赖项的gem。你的选择是

  • 使用不同的PDF格式
  • 使用Heroku的替代品
  • 找到一种方法,在不使用任何gems的情况下实现您自己从Pdf提取所需的功能
  • 浏览gem的代码,看看它在哪里使用sqlite,并尝试在不破坏gem的情况下删除该代码

“Heroku不允许sqlite在生产中使用。”您对此有参考资料吗?它短暂的文件系统将严重限制基于文件的数据库的实用性,但SQLite可以在内存中运行。不过,我不确定
pdf extract
是如何使用SQLite的。问题是HyPDF没有完成我需要它做的事情。当我在ruby脚本中测试Pdf extract时,它做得非常完美。是否要从ruby gem中删除依赖项,或者用pg替换sqlite作为依赖项?我想从一个PDF文档中提取引用(例如,PDF extract extract--references--titles myfile.PDF)。@NoahFinberg如果你必须使用这个gem,那么你就不能部署到Heroku。破解gem以使用Postgres而不是SQLite可能比找到Heroku的替代品要困难得多。