Heroku db:push fails with segfault

放肆的年华 提交于 2019-11-30 03:09:33

Had this problem as well, it was extremely annoying but eventually I got it to work. I had the toolbelt installed but it started working once I did this:

gem install heroku
sudo gem install taps

Yes, the toolbelt is already installed but I think this really fixed it. Plenty of people are having this problem, you're not alone.

Hope this helps (:

Your code is trying to run the 1.9.2 version of SQLite using Ruby 1.8.7.

I would suggest switching to 1.9.2 before trying your push.

rvm use 1.9.2-p290
heroku db:push

Ideally you want to be switching to 1.9.2 full stop.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!