diff --git a/docs/faq.md b/docs/faq.md
index 73bbe37..bf0fc10 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -15,3 +15,19 @@ Before [raising an issue](https://github.com/inventree/inventree/issues), try ha
or
Ctrl + F5
+
+### Command 'inv' / 'invoke' not found
+
+If the `inv` or `invoke` command does not work, it means that the [invoke](https://pypi.org/project/invoke/) python library has not been correctly installed.
+
+Update the installed python packages with PIP:
+
+```
+pip3 install -U -r requirements.txt
+```
+
+### 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.
+
+Always activate the virtual environment before running server commands!
\ No newline at end of file