"hstore type not found in the database. "
django.db.utils.ProgrammingError: hstore type not found in the database.
please install it from your 'contrib/hstore.sql' file
Fatal error: local() encountered an error (return code 1) while
executing 'python manage.py syncdb --noinput'
Rather than manually install hstore in the application databases, you can install hstore in the template1 database. Postgres copies this database when creating a new one, so every new database will have hstore installed by default.
psql template1 -c 'create extension hstore;'