Pip modules¶
Plugin will install by default the following pip modules:
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:18.0'
And even downgrade:
python.pip 'mkdocs:16.0'
You can use pipUpdates
task to check if newer module versions are available.