From b75f1faaa623b5e70482db21cc97fed73a64a5ea Mon Sep 17 00:00:00 2001 From: Umpire2018 Date: Wed, 27 Sep 2023 21:01:31 +0800 Subject: [PATCH] Replace psycopg2 with psycopg2-binary To avoid `No matching distribution found for psycopg2`, I use an alternative from [Psycopg2 web page](https://www.psycopg.org/docs/install.html#quick-install). It is the quickest way to install Psycopg by using the wheel package available on PyPI in most operating systems. close #101, close #34 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7a4eeca..f883747 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,7 +7,7 @@ Jinja2==3.1.2 MarkupSafe==2.1.3 peewee==3.16.2 prompt-toolkit==3.0.39 -psycopg2==2.9.6 +psycopg2-binary==2.9.6 python-dotenv==1.0.0 python-editor==1.0.4 questionary==1.10.0