- Restart Postgres if on Linux
- Use
CREATE EXTENSION
in the Postgres database of your choice
Restart Postgres (Linux only)
Postgres cannot detect newly installed extensions until it is restarted. The common way to restart Postgres is:Load into a database
First, connect to the database you wish to use, usingpsql
or a Postgres client of your
choice.
Then, most extensions can be loaded using:
The name of the extension may be different than the pgxman package name. To view the
list of extensions you have installed, use the query
SELECT * FROM pg_available_extensions;
LOAD
or require other configuration. Check the documentation on
pgxman.com for more information.