psycopg2.OperationalError: FATAL: unsupported frontend protocol 1234.5679: server supports 2.0 to 3.0
问题 I'm using Macbook Psycopg2 works well when connecting the localhost db (PostgreSQL on Mac). The error was raised when I tried to connect PostgreSQL db on a Windows10. the following code is what I have for connection, the host is just the IP of the windows10 db= psycopg2.connect(database='dbname',user='username',password="secret",host="192.168.3.9",port="5432") Errors: File "path/to/psycopg2/__init__.py", line 126, in connect conn = _connect(dsn, connection_factory=connection_factory, *