I have installed Postgresql@14 on my system using homebrew. I want to install pl/python on my database but on running the command CREATE EXTENSION plpython3u;
ERROR: could not open extension control file "/opt/homebrew/share/postgresql@14/extension/plpython3u.control": No such file or directory
As the files for PL/Python are not pre-installed in this homebrew version. I tried to install from source.
but on running make
and make install
command, getting the same error for both:
Makefile:5: ../../../src/Makefile.global: No such file or directory
Makefile:103: /src/Makefile.shlib: No such file or directory
make: *** No rule to make target `/src/Makefile.shlib'. Stop.
How can i install Pl/Python on my Homebrew Postgresql@14?