From d8d9ff6c49a7a11d90dc05ec1a910fed5831282d Mon Sep 17 00:00:00 2001 From: Oliver <oliver.henry.walters@gmail.com> Date: Tue, 3 Jan 2023 12:20:29 +1100 Subject: [PATCH] Update faq.md (#413) Add note on minimum invoke version Ref: https://github.com/inventree/InvenTree/issues/4135 --- docs/faq.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/faq.md b/docs/faq.md index f998fd6..f1bc35f 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -49,6 +49,23 @@ Update the installed python packages with PIP: pip3 install -U -r requirements.txt ``` +### Invoke Version + +If the installed version of invoke is too old, users may see error messages during the installation procedure, such as *"'update' did not receive all required positional arguments!"* (or similar). + +As per the [invoke guide](./start/intro.md#invoke), the minimum required version of Invoke is `1.4.0`. + +To determine the version of invoke you have installed, run either: + +``` +invoke --version +``` +``` +python -m invoke --version +``` + +If you are running an older version of invoke, ensure it is updated to the latest version. + ### ModuleNotFoundError: No module named 'django' Most likely you are trying to run the InvenTree server from outside the context of the virtual environment where the required python libraries are installed.