I get a syntax error when I try to use the bandcamp-dl package from github to download a full-album. Please note I am using Anaconda with Python 3 on Windows.
To install the package in Anaconda, I followed the instructions from Conda: Installing / upgrading directly from github
Activate your conda environment
source activate myenv
conda install git pip
pip install git+git://github.com/iheanyi/bandcamp-dl
Next I followed the instructions in the wiki to download a full -album https://github.com/iheanyi/bandcamp-dl/wiki/How-To-Use-%22For-Dummies%22
bandcamp-dl https://sdoggingsworth.bandcamp.com/album/snacks-hugs-and-rock-n-roll
I run the following code in anaconda prompt.
import bandcamp_dl
bandcamp-dl https://sdoggingsworth.bandcamp.com/album/snacks-hugs-and-rock-n-roll
and get this syntax error
bandcamp-dl https://sdoggingsworth.bandcamp.com/album/snacks-hugs-and-rock-n-roll File "", line 1 bandcamp-dl https://sdoggingsworth.bandcamp.com/album/snacks-hugs-and-rock-n-roll ^ SyntaxError: invalid syntax`
Issue: Full album is supposed to download but I get a syntax error.