mirror of
https://github.com/beetbox/beets.git
synced 2026-01-01 21:42:48 +01:00
Merge pull request #2139 from davidak/plugin-dependencies
docs: add instructions to install plugin dependencies, fixes #2136
This commit is contained in:
commit
f96bdcb563
1 changed files with 17 additions and 0 deletions
|
|
@ -28,6 +28,23 @@ Each plugin has its own set of options that can be defined in a section bearing
|
|||
convert:
|
||||
auto: true
|
||||
|
||||
Install dependencies
|
||||
--------------------
|
||||
|
||||
The needed dependencies can be found on the plugin page.
|
||||
|
||||
You can also use `pip`'s "extras" feature to install all dependencies for a beets plugin.
|
||||
|
||||
::
|
||||
|
||||
pip install beets[fetchart]
|
||||
|
||||
It's also possible to install the dependencies for multiple plugins at once::
|
||||
|
||||
pip install beets[fetchart,lyrics,lastgenre]
|
||||
|
||||
Remember to use `pip` for Python 2.7 as Python 3 is not yet supported. You might have to use `sudo`.
|
||||
|
||||
.. toctree::
|
||||
:hidden:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue