Install using pipx #5031
-
Pipx creates a venv and installs beats in it. Will this work with plugins? or is it not recommended to use pip? Refer: [pypa/pipx: Install and Run Python Applications in Isolated Environments](https://github.com/pypa/pipx)
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Yes it will.
It's the recommended way to run the latest source version of beets. |
Beta Was this translation helpful? Give feedback.
-
Is anyone using Poetry? https://python-poetry.org/docs/ |
Beta Was this translation helpful? Give feedback.
-
Here's an example of installing beets and the 3rd-party plugin beets-extrafiles (from git) using pipx: pipx install 'beets[lyrics,web]'
pipx inject beets 'git+https://github.com/Holzhaus/beets-extrafiles.git@master' List the core plugins you plan to use as extras (the To also install beets from git, use: pipx install 'beets[lyrics,web] @ git+https://github.com/beetbox/beets.git@master'
pipx inject beets 'git+https://github.com/Holzhaus/beets-extrafiles.git@master' |
Beta Was this translation helpful? Give feedback.
Here's an example of installing beets and the 3rd-party plugin beets-extrafiles (from git) using pipx:
List the core plugins you plan to use as extras (the
[...]
list of the pipx install command) to get plugin dependencies installed automatically (seeextras_require={...}
in setup.py for available extras).To also install beets from git, use: