Aditya-Jyoti / Spotify-Downloader

This is a program that downloads a Spotify playlist in MP3 format
MIT License
16 stars 4 forks source link

Tried to install and run on Linux Mint 20 #5

Open raflance opened 2 years ago

raflance commented 2 years ago

I followed all your steps and modified the Secrets file, but got this error when I tried to run:

py main.py -u https://open.spotify.com/playlist/3VYjWQHKOKsS0afsQv63xz?si=779cd5e792854282 -p Dance /usr/bin/py:16: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working from collections import Iterable usage: py [-x] [-l] [-c PRE_CMD] [-C POST_CMD] [-V] [-h] [expression] py: error: unrecognized arguments: -u https://open.spotify.com/playlist/3VYjWQHKOKsS0afsQv63xz?si=779cd5e792854282 -p Dance

Aditya-Jyoti commented 2 years ago

Hello, thanks for raising this issue, It seems that the url that you are trying to open contains a special character hence for that you would have to enclose it in a string, ie, something like

$python3 main.py -u "https://open.spotify.com/playlist/3VYjWQHKOKsS0afsQv63xz?si=779cd5e792854282" -p Dance