I am trying to install imposm.parser (http://imposm.org/docs/imposm.parser/latest/) on Ubuntu 14.04 with Python 3.4. I have a virtualenv activated.
- I successfully installed the following: python-dev, protobuf-compiler and libprotobuf-dev
When I try pip install imposm.parser
I get the following error:
Collecting imposm.parser
Downloading imposm.parser-1.0.7.tar.gz
Traceback (most recent call last):
File "<string>", line 20, in <module
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-l_5r7vwz/imposm.parser
Am I missing something?
I will post my own answer in case someone comes across this with the same problem.
Padraic is right - it only runs with Python 2.5, 2.6 and 2.7. However, there is a port for Python 3 here: https://github.com/tpievila/imposm-parser.
I am currently not aware of a port for imposm. This is just imposm.parser!
Steps to install (Ubuntu 14.04):
Note:
python-dev
refers to Python 2.7 on my Ubuntu 14.04 installation. You also need to installpython3-dev
if you don't have it already.