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.