I am having trouble pushing my rails app to Heroku

2019-08-10 20:54发布

Originally I couldn't push my rails 4 app to heroku because my database was sqlite, and so now I have been trying to install the Postgresql gem ('pg') but I am not having any luck. This is the error message I get in my terminal after running bundle install:

checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** extconf.rb failed ***

After running
gem install pg -v '0.17.1' -–with-pg-config

I get this error in my terminal:

ERROR:  While executing gem ... (Gem::Requirement::BadRequirementError)
 Illformed requirement ["0.17.1--with-pg_config"]
/project$ gem install pg -v '0.17.1'--with-pg-config
ERROR:  Could not find a valid gem 'pg' (= 0.17.1.pre..pre.with.pre.pg.pre.config) in   

any repository
ERROR:  Possible alternatives: pg

Thanks for the help.

1条回答
▲ chillily
2楼-- · 2019-08-10 21:48

If you don't have postgres installed, you may want to go with:

sudo apt-get install postgresql
sudo apt-get install libpq-dev

following by gem install pg and bundle.

If you do have postgres installed and running gem install pg doesn't work, you have to run which pg_config to get the path to your pg_config, and run gem install pg -- --with-pg-config= output_from_previous_command.

查看更多
登录 后发表回答