When I install dustmaps and try to run
python setup.py fetch --map-name=leikeensslin2019
There is an import error. I currently have progressbar installed, but dustmaps requires progressbar2. These both get imported with the same name, so when I try to run the fetch script I get an import error:
from progressbar.widgets import DataSize, AdaptiveTransferSpeed, Bar,...
ImportError: cannot import name 'DataSize'
DataSize is not in progressbar, only progressbar2. This clash can currently be solved by installing progressbar2. It might be worth adding progressbar2 to the dustmaps requirements?
When I install
dustmapsand try to runpython setup.py fetch --map-name=leikeensslin2019There is an import error. I currently have
progressbarinstalled, butdustmapsrequiresprogressbar2. These both get imported with the same name, so when I try to run the fetch script I get an import error:DataSizeis not inprogressbar, onlyprogressbar2. This clash can currently be solved by installingprogressbar2. It might be worth addingprogressbar2to thedustmapsrequirements?