-
Notifications
You must be signed in to change notification settings - Fork 40
PostgreSQL Installation
JingVT edited this page Mar 7, 2018
·
4 revisions
Here are some useful links for installation:
-
Windows- Install postgres on windows -
Ubuntu- Install postgres on ubuntu -
Mac OS- Install postgres on macos
After installing postgreSQL you need to create two extensions, run the following command in psql:
\c <database name>
create extension btree_gin;
create extension pg_trgm;