为了ruby
在 Heroku 上进行开发,我需要使用postgresql
,但是当我执行 bundle install 时,我看到以下消息:
You need to install postgresql-server-dev-X.Y for building a server-side extension or libpq-dev for building a client-side application.
checking for libpq-fe.h... no Can't find the 'libpq-fe.h header
答案1
您需要安装 PostgreSQL 服务器:https://wiki.postgresql.org/wiki/Apt
并安装 pg gem 所需的库:
sudo apt-get install libpq-dev
此后它应该可以工作。