I\'m running PostgreSQL 9.3.1 on Ubuntu 12.04.4. I\'d like to use the plpython language extension but I get an error when I try to use it I get:
ERROR: langua
I'm running Raspbian 10 (buster) / Linux raspberrypi 4.19.97-v7+ #1294 and ran the following commands to install PL/Python 3 on PostgreSQL 11.7.
pi@raspberrypi:~/$ sudo apt-cache search ".*plpython3.*"
postgresql-plpython3-11 - PL/Python 3 procedural language for PostgreSQL 11
sudo apt-get install postgresql-contrib postgresql-plpython3-11
sudo su - postgres
psql
CREATE EXTENSION plpython3u;
Verify with command:
select * from pg_language;