I’m try to run mopidy in raspberry pi raspbian flavor. Log show gmusic is disabled by dependency like the post https://discourse.mopidy.com/t/gmusic-extension-gets-disabled/604:
2015-04-29 19:37:37,845 INFO [22483:MainThread] mopidy.__main__: Starting Mopidy 1.0.3
2015-04-29 19:37:38,121 INFO [22483:MainThread] mopidy.config: Loading config from builtin defaults
2015-04-29 19:37:38,163 INFO [22483:MainThread] mopidy.config: Loading config from /usr/share/mopidy/conf.d/spotify.conf
2015-04-29 19:37:38,168 INFO [22483:MainThread] mopidy.config: Loading config from /etc/mopidy/mopidy.conf
2015-04-29 19:37:38,190 INFO [22483:MainThread] mopidy.config: Loading config from command line options
2015-04-29 19:37:38,403 INFO [22483:MainThread] mopidy.ext: Disabled extension gmusic: Dependency appdirs>=1.1.0 not found
2015-04-29 19:37:38,707 INFO [22483:MainThread] mopidy.__main__: Enabled extensions: mpd, http, stream, m3u, softwaremixer, local
2015-04-29 19:37:38,710 INFO [22483:MainThread] mopidy.__main__: Disabled extensions: spotify, gmusic
appdirs is already installed:
pi@raspberrypi /var/log $ sudo pip2.7 install appdirs
Requirement already satisfied (use --upgrade to upgrade): appdirs in /usr/local/lib/python2.7/dist-packages
pi@raspberrypi /var/log $ pip show appdirs
---
Metadata-Version: 2.0
Name: appdirs
Version: 1.4.0
Summary: A small Python module for determining appropriate " +         "platform-specific dirs, e.g. a "user data dir".
Home-page: http://github.com/ActiveState/appdirs
Author: Trent Mick; Sridhar Ratnakumar
Author-email: trentm@gmail.com; github@srid.name
License: MIT
Location: /usr/local/lib/python2.7/dist-packages
Requires:
Also, others packages are missing but are already installed like appdirs:
pi@raspberrypi /usr/local $ sudo mopidyctl deps
Running "/usr/bin/mopidy --config /usr/share/mopidy/conf.d:/etc/mopidy/mopidy.conf deps" as user mopidy
Executable: /usr/bin/mopidy
Platform: Linux-3.18.7+-armv6l-with-debian-7.8
Python: CPython 2.7.3 from /usr/lib/python2.7
Mopidy: 1.0.3 from /usr/lib/python2.7/dist-packages
  Pykka>=1.1: 1.2.0 from /usr/lib/python2.7/dist-packages
  tornado>=2.3: 2.3 from /usr/lib/python2.7/dist-packages
Mopidy-GMusic: 0.3.0 from /usr/local/lib/python2.7/dist-packages
  setuptools: 0.6c11 from /usr/lib/python2.7/dist-packages
  Mopidy>=0.18: 1.0.3 from /usr/lib/python2.7/dist-packages
    Pykka>=1.1: 1.2.0 from /usr/lib/python2.7/dist-packages
    tornado>=2.3: 2.3 from /usr/lib/python2.7/dist-packages
  Pykka>=1.1: 1.2.0 from /usr/lib/python2.7/dist-packages
  gmusicapi>=3.0.0: 4.0.0 from /usr/local/lib/python2.7/dist-packages
    validictory>=0.8.0,!=0.9.2: not found
    decorator>=3.3.1: 3.4.2 from /usr/local/lib/python2.7/dist-packages
    mutagen>=1.18: 1.28 from /usr/local/lib/python2.7/dist-packages
    protobuf>=2.4.1: 2.6.1 from /usr/local/lib/python2.7/dist-packages
      setuptools: 0.6c11 from /usr/lib/python2.7/dist-packages
    requests>=1.1.0,!=1.2.0,!=2.2.1: not found
    python-dateutil>=1.3,!=2.0: not found
    proboscis>=1.2.5.1: 1.2.6.0 from /usr/local/lib/python2.7/dist-packages
    oauth2client>=1.1: 1.4.7 from /usr/local/lib/python2.7/dist-packages
      httplib2>=0.8: 0.9.1 from /usr/local/lib/python2.7/dist-packages
      pyasn1==0.1.7: 0.1.7 from /usr/local/lib/python2.7/dist-packages
      pyasn1-modules==0.0.5: 0.0.5 from /usr/local/lib/python2.7/dist-packages
        pyasn1>=0.1.4: 0.1.7 from /usr/local/lib/python2.7/dist-packages
      rsa==3.1.4: 3.1.4 from /usr/local/lib/python2.7/dist-packages
        pyasn1>=0.1.3: 0.1.7 from /usr/local/lib/python2.7/dist-packages
      six>=1.6.1: not found
    mock>=0.7.0: 1.0.1 from /usr/local/lib/python2.7/dist-packages
    appdirs>=1.1.0: not found
Mopidy-Spotify: 1.3.0 from /usr/share/mopidy
  Mopidy>=1.0: 1.0.3 from /usr/lib/python2.7/dist-packages
    Pykka>=1.1: 1.2.0 from /usr/lib/python2.7/dist-packages
    tornado>=2.3: 2.3 from /usr/lib/python2.7/dist-packages
  Pykka>=1.1: 1.2.0 from /usr/lib/python2.7/dist-packages
  pyspotify>=1.9,<1.999: 1.12 from /usr/local/lib/python2.7/dist-packages
GStreamer: 0.10.36.0 from /usr/lib/python2.7/dist-packages/gst-0.10/gst
  Detailed information:
    Python wrapper: gst-python 0.10.22.0
    Relevant elements:
      Found:
        uridecodebin
        souphttpsrc
        appsrc
        alsasink
        osssink
        oss4sink
        pulsesink
        id3demux
        id3v2mux
        lame
        mad
        mp3parse
        vorbisdec
        vorbisenc
        vorbisparse
        oggdemux
        oggmux
        oggparse
        flacdec
        flacparse
        shout2send
      Not found:
        flump3dec
Any help is appreciated.