From 58c0bee3254e7e20a189138586cc5da159341933 Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Wed, 26 Jul 2023 08:30:01 -0400 Subject: [PATCH] improved error message for running configure --- invokeai/backend/install/check_root.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/invokeai/backend/install/check_root.py b/invokeai/backend/install/check_root.py index 4dab16adcc..0c24034dc7 100644 --- a/invokeai/backend/install/check_root.py +++ b/invokeai/backend/install/check_root.py @@ -23,7 +23,9 @@ def check_invokeai_root(config: InvokeAIAppConfig): print() print('== STARTUP ABORTED ==') print('** One or more necessary files is missing from your InvokeAI root directory **') - print('** Please rerun the configuration script to fix this problem. From the launcher, this is option [7] **') + print('** Please rerun the configuration script to fix this problem. **') + print('** From the launcher, selection option [7]. **') + print('** From the command line, activate the virtual environment and run "invokeai-configure --yes --skip-sd-weights" **') input('Press any key to continue...') sys.exit(0)