Pip modules¶
Plugin will install by default the following pip modules:
- mkdocs:1.2.3
- mkdocs-material:8.0.2
- pygments:2.10.0
- pymdown-extensions:9.1
- mkdocs-markdownextradata-plugin:0.2.4
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'
You can use pipUpdates
task to check if newer module versions are available.