On 7/8/22 9:16 AM, kisner@live.com wrote:
Just out of curiosity and to try to improve the doc I can do this a little later. But I can tell you for sure the pip install psycopg2-binary<2.9 command failed for me on Ubuntu 22.04 and Debian 11.3. I'm not saying it's *not* me, and I don't know when the last time that doc was updated but I couldn't get it to work on a few different distros.
The issue is when you do
pip install psycopg2-binary<2.9
your shell (sh, bash, zsh or whatever) interprets <2.9
as an input
redirection and probably says something like 2.9: No such file or directory
. You need to do something like
pip install psycopg2-binary\<2.9
or
pip install 'psycopg2-binary<2.9'
I'll update the doc.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan