我正在关注this tutorial,但是当我尝试推送到Heroku时失败了。似乎缺少“sqlite3.h”。我是新手,所以我不确定哪些信息可以帮助人们诊断问题,所以这就是一切:)。我在Mac OS X 10.7 Lion上运行。以下是我正在使用的所有内容的版本:
Amits-MacBook-Air-2:demo_app amitgupta$ ruby -v
ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.3.0]
Amits-MacBook-Air-2:demo_app amitgupta$ rails -v
Rails 3.2.3
Amits-MacBook-Air-2:demo_app amitgupta$ sqlite3 -version
3.7.11 2012-03-20 11:35:50 00bb9c9ce4f465e6ac321ced2a9d0062dc364669
Amits-MacBook-Air-2:demo_app amitgupta$ heroku -v
2.25.0
Amits-MacBook-Air-2:demo_app amitgupta$ port -v
MacPorts 2.0.4
Entering interactive mode... ("help" for help, "quit" to quit)
[RailsApps/demo_app] > quit
Goodbye
当我尝试推送到Heroku时:
Amits-MacBook-Air-2:demo_app amitgupta$ heroku create --stack cedar
Creating floating-stream-8009... done, stack is cedar
http://floating-stream-8009.herokuapp.com/ | git@heroku.com:floating-stream-8009.git
Amits-MacBook-Air-2:demo_app amitgupta$ git push heroku master
这是我得到的:
Counting objects: 119, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (104/104), done.
Writing objects: 100% (119/119), 33.74 KiB, done.
Total 119 (delta 17), reused 0 (delta 0)
-----> Heroku receiving push
-----> Ruby/Rails app detected
-----> Installing dependencies using Bundler version 1.1.2
Running: bundle install --without development:test --path vendor/bundle --binstubs bin/ --deployment
Fetching gem metadata from https://rubygems.org/.......
Installing rake (0.9.2.2)
.
.
.
Installing sqlite3 (1.3.6) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb
checking for sqlite3.h... no
sqlite3.h is missing. Try 'port install sqlite3 +universal'
or 'yum install sqlite-devel' 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
.
.
.
--disable-local
Gem files will remain installed in /tmp/build_2l2dn7bx7lu34/vendor/bundle/ruby/1.9.1/gems/sqlite3-1.3.6 for inspection.
Results logged to /tmp/build_2l2dn7bx7lu34/vendor/bundle/ruby/1.9.1/gems/sqlite3-1.3.6/ext/sqlite3/gem_make.out
An error occured while installing sqlite3 (1.3.6), and Bundler cannot continue.
Make sure that `gem install sqlite3 -v '1.3.6'` succeeds before bundling.
!
! Failed to install gems via Bundler.
!
! Heroku push rejected, failed to compile Ruby/rails app
To git@heroku.com:blazing-mountain-3659.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:blazing-mountain-3659.git'
当我这样做时:
Amits-MacBook-Air-2:demo_app amitgupta$ sudo port install sqlite3 +universal
我明白了:
Password:
---> Computing dependencies for sqlite3
---> Cleaning sqlite3
接下来我尝试了:
Amits-MacBook-Air-2:demo_app amitgupta$ sudo gem install sqlite3 -v '1.3.6'
得到:
Building native extensions. This could take a while...
Successfully installed sqlite3-1.3.6
1 gem installed
Installing ri documentation for sqlite3-1.3.6...
Installing RDoc documentation for sqlite3-1.3.6...
然后:
Amits-MacBook-Air-2:demo_app amitgupta$ bundle install
给出:
Using rake (0.9.2.2)
.
.
.
Using sqlite3 (1.3.6)
Using uglifier (1.2.4)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
然后我再次尝试推送到Heroku,但是遇到了同样的问题。也许它与第一个命令“Creating floating-stream-8009”和第二个命令“未能将某些引用推到'git@heroku.com:blazing-mountain-3659.git'”之间的差异有关? / p>
答案 0 :(得分:53)
gem 'sqlite3', :group => [:development, :test]
group :production do
gem 'pg'
end
Gemfile
Gemfile.lock
bundle install --without production
git add .
git commit -am "bundle updating sqlite3"
git push heroku master
答案 1 :(得分:25)
Heroku使用postgresql,因此您想删除sqlite3或将其移动到Gemfile中的开发组中。
检查Gemfile.lock是否存在可能依赖于sqlite3的任何其他宝石,因为这也会导致问题。
答案 2 :(得分:4)
答案 3 :(得分:1)
我发生了什么事,我正在跟随Heroku教程,当我使用git push heroku master
时,它正在推动我最新的Git提交(显然!)
我忘记的是,在Git眼中,我还在gemfile中使用sqlite!傻傻的我!
所以我使用git add .
后跟git commit -m "Changed to Postgres."
,因此Git知道这些更改。在那之后推进对我来说很好。
答案 4 :(得分:0)
是的,正如这些答案所建议的那样,大多数时候 您将要避免在生产due to the constraints of the Heroku platform中使用SQLite。 但是,您可能仍然有一个perfectly acceptable use case(例如只读配置)以使用SQLite。我的建议是:
添加heroku-buildpack-apt
buildpack
添加到您的Aptfile
:
libsqlite3-dev
libsqlite3-0