You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on branch master, fresh git pull, did
rake db:drop
rake db:create
rake db:migrate
======================and got this error
== CreateNeighborhoodsTable: migrating =======================================
-- create_table(:neighborhoods)
NOTICE: CREATE TABLE will create implicit sequence "neighborhoods_id_seq" for serial column "neighborhoods.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "neighborhoods_pkey" for table "neighborhoods"
-> 0.0035s
-- execute("CREATE EXTENSION postgis;")
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
PG::UndefinedFile: ERROR: could not load library "/usr/local/Cellar/postgresql/9.2.4/lib/rtpostgis-2.0.so": dlopen(/usr/local/Cellar/postgresql/9.2.4/lib/rtpostgis-2.0.so, 10): Library not loaded: /usr/local/lib/libpng15.15.dylib
The text was updated successfully, but these errors were encountered:
@ratacat The error says that it's having trouble loading one of the shared libraries that Postgres needs. You could try chasing down the problem using otool -L (the interwebz guesses your problem is with the GDAL library), but it might be easier to reinstall postgres. I'm using off-the-shelf Postgres.app and it works like a champ.
on branch master, fresh git pull, did
rake db:drop
rake db:create
rake db:migrate
======================and got this error
== CreateNeighborhoodsTable: migrating =======================================
-- create_table(:neighborhoods)
NOTICE: CREATE TABLE will create implicit sequence "neighborhoods_id_seq" for serial column "neighborhoods.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "neighborhoods_pkey" for table "neighborhoods"
-> 0.0035s
-- execute("CREATE EXTENSION postgis;")
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
PG::UndefinedFile: ERROR: could not load library "/usr/local/Cellar/postgresql/9.2.4/lib/rtpostgis-2.0.so": dlopen(/usr/local/Cellar/postgresql/9.2.4/lib/rtpostgis-2.0.so, 10): Library not loaded: /usr/local/lib/libpng15.15.dylib
The text was updated successfully, but these errors were encountered: