(03-28-2020, 04:42 PM)TookaFace Wrote: Try with this:
Code:sudo pip3 install gmusicapi
Just beat me to it.
@Lttlwing16
The 'pip' command is the package manager for Python 2. If you want to install Python 3 packages use 'pip3'
That said installing the Python3 package of gmusicapi with "sudo pip3 install gmusicapi" did nothing to the upnp config screen on my Moode.
So Iogging in to the Pi via SSH and editing /var/www/upp-config.php (e.g. "sudo nano /var/www/npp-config.php") to change line 75 from;
Code:
$result = sysCmd('/var/www/command/util.sh check-dir "/usr/local/lib/python2.7/dist-packages/gmusicapi"');
to...
Code:
$result = sysCmd('/var/www/command/util.sh check-dir "/usr/local/lib/python3.7/dist-packages/gmusicapi"');
... did the trick. The UPnP config screen now shows the Google Music credentials fields.
I don't have a Google Music subscription to test but hope that works for you.
Maybe that and the advice shown in the UPnP config screen could be updated for the next release if it works.