PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Impossibile creare estensioni plv8 postgresql

Questo dovrebbe funzionare sulla maggior parte delle piattaforme (https://github.com/plv8/ plv8/issues/212#issuecomment-287589193 ):

$ easy_install pgxnclient
$ pgxnclient install plv8

Non ha funzionato per me però. L'unica soluzione che ho trovato è stata creare la libreria dal sorgente .

Se non hai wget installato, esegui:

$ brew install wget

Quindi esegui:

$ wget https://github.com/plv8/plv8/archive/v2.0.0.tar.gz
$ tar -xvzf v2.0.0.tar.gz
$ cd plv8-2.0.0
$ make static
$ make install

Ha funzionato per me.