On Thu, Oct 17, 2024 at 1:10 PM Florents Tselai
<florents(dot)tselai(at)gmail(dot)com> wrote:
> Which means that if you want non-standard packages in your Pl/Python code,
> you’ll have to `sudo python3 -m pip install` things
Or `sudo apt install python3-<package>`, or `pip install --user
<package>` as the database user, or...
Virtualenvs are great -- I use them daily -- but there are plenty of
different ways to use the standard interpreter, with other pros and
cons.
--Jacob