From 2e0dfeec504e508b9bdd06ea74c8e149df7d8173 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=B8=E5=AD=90?= Date: Sun, 16 Jul 2023 23:34:35 +0800 Subject: [PATCH] Fix dependency error (#745) ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. lightning 2.0.2 requires fastapi<0.89.0,>=0.69.0, but you have fastapi 0.100.0 which is incompatible. so-vits-svc-fork 3.14.1 requires fastapi==0.88, but you have fastapi 0.100.0 which is incompatible. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index cd92631..cffa729 100644 --- a/requirements.txt +++ b/requirements.txt @@ -41,3 +41,4 @@ pyworld>=0.3.2 httpx==0.23.0 #onnxruntime-gpu torchcrepe==0.0.20 +fastapi==0.88