how do i install plugins on beets if i installed thru apt? #5694
-
i installed beets thru aptitude, and my version of raspbian throws an error about my system being externally managed when i try to use pip. i really want to install whatlastgenre tho, which is a third party plugin that i think you're supposed to install with pip. what do i do here? im fine with reinstalling beets if that's necessary. my apologies if this is a stupid question, but i can't figure out how to do this for the life of me. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
I'm not an expert of Then one thing you can do is 1. find out where this virtual environment is and 2. run
Hope this help! |
Beta Was this translation helpful? Give feedback.
I'm not an expert of
apt
and how it installs Python apps. I assume it creates an virtual environment for the app.Then one thing you can do is 1. find out where this virtual environment is and 2. run
pip
in this virtual environment.Run
Look at the first line of output it should contain something like:
The virtual environment then is at
/some/path/to/apts/venvs/beets
. (You need to replace/some/path/to/apts/venvs/
with the analog part of the path in your beet loader script!)Now you can run pip in this virtual environment with
To install your 3rd party plugin you might …