hello my beets won’t start. Does anybode know why? I tried to remove the config, but it didn’t helped.
I get the following terminal output:
>beet --version
Traceback (most recent call last):
File “/usr/bin/beet”, line 33, in
sys.exit(load_entry_point(‘beets==1.4.9’, ‘console_scripts’, ‘beet’)())
File “/usr/lib/python3.8/site-packages/beets/ui/init.py”, line 1266, in main
_raw_main(args)
File “/usr/lib/python3.8/site-packages/beets/ui/init.py”, line 1249, in _raw_main
subcommands, plugins, lib = _setup(options, lib)
File “/usr/lib/python3.8/site-packages/beets/ui/init.py”, line 1135, in _setup
plugins = _load_plugins(config)
File “/usr/lib/python3.8/site-packages/beets/ui/init.py”, line 1114, in _load_plugins
beetsplug.path = paths + beetsplug.path
TypeError: can only concatenate list (not “_NamespacePath”) to list
EDIT:
I use Version 1.4.9-4 on Arch Linux with python 3.8.5-2.
Thank to you two, I could fix it with your help. As Victrid said in the last post in the issue and @samthursfield in this forum, the problem was my .local/lib/python3.8 path. I installed the beets-extrafiles plugin with the following command:
pip3 install --user beets-extrafiles
That was recommended from the Tutorial on PyPI. So I removed it from my user installation and install it as root.
sudo pip3 install beets-extrafiles
Now it works. Thank you all!
As I read that the other person with the problem has Arch Linux too, I wonder if this is Arch Linux related problem. Or is the issue known from other distros too?