condaによるpostgresqlのインストールと起動

% conda install postgresql
% initdb -D /path/to/postgresql-prefix
% pg_ctl -D /path/to/postgresql-prefix start
% createuser -P username
% createdb -O owner dbname
% psql dbname
dbname=# GRANT ALL PRIVILEGES ON DATABASE dbname to username;
% pg_ctl -D /path/to/postgresql-prefix stop

/path/to/postgresql-prefix以下にたくさんファイルが生成される。自分だけの場合はusernameownerは同じでよいと思われる。