here's how i, a non-programmer, was able to get this to work on windows.
-
install python. you can do this at python.org, or through the windows store
-
run windows command prompt as an administrator, and enter
pip install browser-cookie3
this will install browser-cookie3, which iliana's script depends on.
when i first tried this, i got the following error message
error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
to fix that, i went to that url, and downloaded the build tools installer. it has a lot of options for which components to install, but selecting the "desktop development with C++" option worked for me. after installing it, pip install browser-cookie3 worked.
-
go to https://github.com/iliana/bandcamp-dl, and download bandcamp-dl.py
-
the default file path for windows command prompt is C:\Windows\System32. we need to change that to the folder we downloaded bandcamp-dl.py to. in windows command prompt, type "cd", then hit space, then enter the full address of the folder bandcamp-dl.py is in. if you don't know how to get this address, google it.
-
after you've changed the command prompt file path, enter the following
python bandcamp-dl.py --format mp3-v0
the "--format mp3-v0" at the end can be changed to download in other file formats. check the readme on github for details.
if this works, you should see the command prompt start going through and downloading your bandcamp library, one album at a time. leave it open and running until it's done.
if this doesn't work for you, you'll need to troubleshoot that. i needed a lot of help to get this to work myself, so if you run into a problem i didn't encounter, i probably won't know the solution. try to figure it out, or check the comments in here or in github to see if anyone else had the same issue. thanks to Storm Vision in SIBR for helping me figure this out.
