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,069
  • 3
  • 31
  • 49
user3773503
  • 141
  • 4
  • 11

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
  • 475
  • 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,069
  • 3
  • 31
  • 49
  • 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