Pip modules¶
Plugin will install by default the following pip modules:
- mkdocs:1.4.1
- mkdocs-material:8.5.7
- pygments:2.13.0
- pymdown-extensions:9.7
- mkdocs-markdownextradata-plugin:0.2.5
By default, modules are installed into project specific virtualenv
(located in .gradle/python
).
You can see all installed modules with pipList
task.
If you want to use other python modules (e.g. other theme):
python.pip 'other-module:12', 'and-other:1.0'
Also, you can override default modules versions:
python.pip 'mkdocs:1.1'
And even downgrade:
python.pip 'mkdocs:1.0.3'
Tip
All default modules are simply implicitly configured in python.pip
and any
manual module declaration will override the default.
Read more about possible pip modules configuration in
python plugin documentation
Note
You can also use requirements.txt file for version management. Read more in python plugin documentation
You can use pipUpdates
task to check if newer module versions are available.