From f8d3373e13423c75ce142292e204db17fb0b5911 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 23 Oct 2025 19:11:43 +0200 Subject: [PATCH] docs: update documentation to refer to psycopg3 It's the newer version with broader support for new packages (e.g. numpy2). closes #12409 --- docs/advanced-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-setup.md b/docs/advanced-setup.md index 88afbef94..72c74dcd6 100644 --- a/docs/advanced-setup.md +++ b/docs/advanced-setup.md @@ -134,10 +134,10 @@ The following systems have been tested and are known to work with freqtrade: ### PostgreSQL Installation: -`pip install psycopg2-binary` +`pip install "psycopg[binary]"` Usage: -`... --db-url postgresql+psycopg2://:@localhost:5432/` +`... --db-url postgresql+psycopg://:@localhost:5432/` Freqtrade will automatically create the tables necessary upon startup.