From e7053274aae62451ea0ffabcbc0cf987131ade16 Mon Sep 17 00:00:00 2001 From: braxlaundry Date: Tue, 28 Jan 2025 22:48:12 -0800 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ.md b/FAQ.md index b0165f4..a85abe3 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1,6 +1,6 @@ ### What to do with problems during installation with error message "Import-Error"? -Python is a very modular programming language, special functionality can be included to the program by "importing modules". If one of these modules isn't found you get the error message 'ImportError: No module named xxxx'. This shouldn't be happen, you normally can solve this by installing the missing module with `pip[3] --target vendor install [module-name]`. Pip3 is normally used if you are using python 3.x - depending on the distro it could also be named pip. +Python is a very modular programming language, special functionality can be included to the program by "importing modules". If one of these modules isn't found you get the error message 'ImportError: No module named xxxx'. This shouldn't happen, you normally can solve this by installing the missing module with `pip[3] --target vendor install [module-name]`. Pip3 is normally used if you are using python 3.x - depending on the distro it could also be named pip. ### What do I do if I lose my "Admin" password?