0

I am trying install imposm.parser library on python.

After I typed - pip install imposm.parser, it said it could not find protoc command.

but I have already got protobuf 2.6.1 library installed on python!? I don't understand.

Thanks Andrew

tjati
  • 5,761
  • 4
  • 41
  • 56
user3773503
  • 161
  • 2
  • 5
  • 12

2 Answers2

4

You need to download Protocol Compiler separately from Protocol Buffers library. Get it from Google Developers Protocol Buffers Download page.

Tauno Siitam
  • 485
  • 4
  • 12
0

Most executables of python installed using pip (or easy install) are stored in the Scripts-subfolder of Python. In my case, this is C:\Python27\Scripts.

You should check, if your PATH-Environment containts that directory. Further information are already on this SO-question.

Community
  • 1
  • 1
tjati
  • 5,761
  • 4
  • 41
  • 56
  • 1
    I have added the C:\Python27\Scripts to the path enviroment already. But inside C:\Python27\Scripts I couldn't find anything related to protobuf – user3773503 Nov 06 '14 at 12:54