Closed smmaurer closed 4 years ago
Item 2 has been resolved by https://github.com/UDST/osmnet/issues/15.
I think this can be closed. We've been recommending pip install .
instead of python setup.py develop
for a while now across UDST, because it's more reliable in cases like this. And Python 2.7 support is no longer a priority anyway.
I'm running into a couple of problems trying to run
python setup.py develop
in a clean Python 2.7 conda environment (Mac OS 10.14). (Pip install works fine.)One problem has to do with dependencies whose newest versions no longer support Python 2.7. For example, if
matplotlib
isn't installed yet, I get this error:Adding
'matplotlib < 3.0'
tosetup.py
resolves this.The second problem is something with
osmnet
that I'm not sure how to diagnose. After fixing thematplotlib
error, I get this one:Manually installing
osmnet
allowspython setup.py develop
to run properly forurbanaccess
, but I'm not sure what the general fix is.