kevinschaul / binify

A command-line tool to better visualize crowded dot density maps.
MIT License
158 stars 11 forks source link

progressbar 2.3 dependency issue #29

Open smoucka opened 10 years ago

smoucka commented 10 years ago

It seems progressbar v2.3 is unavailable using pip and chokes on the dependencies when binify is installed in this manner (using virtualenv per your recommendation). On PyPI the last stable version is 2.2 released nearly 8 years ago making me think I'm missing something here...

Any help would be greatly appreciated.

smoucka commented 10 years ago

UPDATE - 6/3/14

Quick note: I've been working on a Windows machine without administrative privileges (pain in my butt!)

The two versions of progressbar available via PyPI are 2.2 and 2.3-dev

Working in a virtualenv I was able to get binify up and running.

pip install progressbar==2.2

I was forced to use easy_install on an executable to get GDAL installed (verison 1.11.0 was compatible with the minimal testing I did once binify was up and running).

Downloaded and extracted binify-master.zip then updated setup.py and requirements.txt to instead refer to version 2.2. While in \binify-master ...

python setup.py install

I ran two successful commands and the tool works great! I'll fork and make the minor changes.