dtcooper / raspotify

A Spotify Connect client that mostly Just Works™
https://dtcooper.github.io/raspotify
MIT License
4.63k stars 213 forks source link

How to actually install older version on RPi Zero 1? #533

Closed fpetru104 closed 2 years ago

fpetru104 commented 2 years ago

Due Diligence

What can we help you with?

Hello. Can anyone give me a hint or tell me the command to install the older version of Raspotify still supported by Raspberry Pi Zero? I can't figure it out..

JasonLG1979 commented 2 years ago

To be clear. Your mileage may vary as how well it works and older versions aren't supported so you could end up on your own because it will never be updated. But here you go.

This should get you up and running:

Download the latest version that supports Pi Zero's.

wget https://github.com/dtcooper/raspotify/releases/download/0.31.8.1/raspotify_0.31.8.1.librespot.v0.3.1-54-gf4be9bb_armhf.deb

Install it.

sudo apt install ./raspotify_0.31.8.1.librespot.v0.3.1-54-gf4be9bb_armhf.deb
nkappler commented 2 years ago

On the website the download command uses curl. This didn't work for me, but wget did work!

MichaIng commented 2 years ago

With curl it would be:

curl -fLO 'https://github.com/dtcooper/raspotify/releases/download/0.31.8.1/raspotify_0.31.8.1.librespot.v0.3.1-54-gf4be9bb_armhf.deb'
sudo apt install ./raspotify_0.31.8.1.librespot.v0.3.1-54-gf4be9bb_armhf.deb