PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Postgresql gem install pg 0.18.4 wird bestanden, Bundle-Installation schlägt fehl

Ich habe jetzt einen ähnlichen Fehler auf macOS Catalina, aber ich konnte es nicht erfolgreich ausführen

gem install pg -v '0.18.4'

Ich habe dieses Problem im puma gefunden Juwel (ich weiß, dass dies ein weiteres Juwel ist), das mir geholfen hat, das Problem zu lösen:https://github .com/puma/puma/issues/2304 .

Dort habe ich das gefunden:

Und das:

gem install puma:4.3.5 -- --with-cflags="-Wno-error=implicit-function-declaration"

So konnte ich pg erstellen mit:

gem install pg -v '0.18.1' -- --with-cflags="-Wno-error=implicit-function-declaration"