I have mopidy installed on Ubuntu from http://apt.mopidy.com/
The 1.0.1 version was released few days ago and it looks like this version is installed on my machine: dpkg -s mopidy => Version: 1.0.1-1
however when I run mopidy --version => Mopidy 1.0.0
I’m not sure if something is messed up in my system or if there is some problem with released package.
Any hints how to debug it?
Can you run which mopidy
to make sure you are running the version from APT and not some other version from pip?
which mopidy => /usr/local/bin/mopidy
I’m starting mopidy by /etc/init.d/mopidy start
and it uses above path:
ps ax | grep mopidy => /usr/bin/python /usr/local/bin/mopidy --quiet --config /usr/share/mopidy/conf.d:/etc/mopidy/mopidy.conf:/var/lib/mopidy/mopidy.conf
If you run /usr/bin/mopidy --version
that’ll be Mopidy from APT and should correctly report v1.0.1. /usr/local/bin/mopidy
is from pip, and that’s on your path before /usr/bin/mopidy
. We used to have a problem where extensions from pip didn’t see their Mopidy dependency installed from APT and so installed another version from pip. But that should have been resolved. You should be able to safely remove the pip version.
And there’s a better explanation here https://docs.mopidy.com/en/latest/installation/debian/#missing-extensions
Yes, this was exactly my problem.
Thank you for your time.
As for the guide on uninstalling pip version, I also needed to reinstall debian package to be able to use it sudo apt-get install --reinstall mopidy