2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 05:25:42 +00:00

Update invoke docs (#6263)

- Minimum invoke version is 2.0.0
This commit is contained in:
Oliver
2024-01-17 12:36:24 +11:00
committed by GitHub
parent 75f75ed820
commit 386aa5952c
2 changed files with 14 additions and 4 deletions

View File

@ -24,9 +24,12 @@ 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).
If the installed version of invoke is too old, users may see error messages during the installation procedure, such as:
As per the [invoke guide](./start/intro.md#invoke), the minimum required version of Invoke is `1.4.0`.
- *'update' did not receive all required positional arguments!*
- *Function has keyword-only arguments or annotations*
As per the [invoke guide](./start/intro.md#invoke), the minimum required version of Invoke is `2.0.0`.
To determine the version of invoke you have installed, run either:
@ -37,7 +40,11 @@ invoke --version
python -m invoke --version
```
If you are running an older version of invoke, ensure it is updated to the latest version.
If you are running an older version of invoke, ensure it is updated to the latest version:
```
pip install -U invoke
```
### No module named 'django'