I have a postgresql database that is in production within azure, I want to install a python extension on this database i use database manager called DBeaver with it I run the command:
CREATE EXTENSION plpython3u;
but I get the error:
could not open extension control file "/usr/local/pgsql/share/extension/plpythonu.control": No such file or directory
I'm still a beginner and I don't know how to solve this problem.. I tried to install python on my computer, and it is installed correctly I tried running the command:
SELECT * FROM pg_extension WHERE extname = 'plpython3u';
to see if it was already installed, and it is not, because it returns an empty table How can I resolve the error and correctly install the python extension?
i am using windows 11