qrpike / spotify-playlist-downloader

Download an entire spotify playlist ( FROM SPOTIFY at 160kpbs ) to your local machine.
292 stars 111 forks source link

Ubuntu 15.10 Installation Instructions #25

Open fredericmalo opened 8 years ago

fredericmalo commented 8 years ago

Hello, this is it :

Ubuntu 15.10

sudo apt-get -y install wget ffmpeg build-essential git

Why v0.10.36 ? Please see qrpike comment : https://github.com/qrpike/spotify-playlist-downloader/issues/15#issuecomment-150532849

wget https://nodejs.org/dist/v0.10.36/node-v0.10.36-linux-x64.tar.gz sudo tar -C /usr/local --strip-components 1 -xzf node-v0.10.36-linux-x64.tar.gz ls -l /usr/local/bin/node ls -l /usr/local/bin/npm

git clone https://github.com/qrpike/spotify-playlist-downloader.git cd spotify-playlist-downloader

npm install

node main.js -u user -p password -l spotify:user:spotify:playlist:06KmJWiQhL0XiV6QQAHsmw

dangrove98 commented 8 years ago

OMG I've been looking to get this working on OS X for agessss (Terminal kept spewing out the "cannot find command spd" thing) so I thought I'd chance on your instructions as they're very different to everything else I've seen. It works perfectly, thank you so much!

fredericmalo commented 8 years ago

Happy I could help ! :)

It can be very frustrating that such software could not been installed in a snap

Many thanks Quinton for your work !

qrpike commented 8 years ago

@fredericmalo Thanks for giving back! If you want to create a pull request with this in the README, I can merge that in as well. I may have some time soon to see if we can work around that v0.10.x issue.

@dangrove98 cheers!

fredericmalo commented 8 years ago

Hello,

I would love to make pull request. Before that, how can I make the "spd" command work ?

I could only make "node main.js -u user -p password -l spotify:user:spotify:playlist:06KmJWiQhL0XiV6QQAHsmw" work and it's not as cute as "spd ..."

Thanks !

mike1808 commented 8 years ago

The same result but with nvm:

  1. Download nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
  1. Install node v0.10.36 using nvm
nvm install v0.10.36 
nvm alias default v0.10.36 
nvm use default
  1. Install qrpike/spotify-playlist-downloader
npm i -g qrpike/spotify-playlist-downloader
  1. ???
  2. Download your playlist using this script.

Works on all OSes and versions.