Open shiro900 opened 8 years ago
I have the same issue.
and i see the same error, "missing common.h"
@shiro900, were you ever successful in setting this up? I am doing on a windows 7 64-bit machine with 32-bit Python 2.7.10
@shiro900
I also got the problem. were you ever successful in setting this up? Or do you have any other method to solve this problem?
Same problem here, did anyone find a solution yet?
For Ubuntu 16.04 I had to install google protobuf from source, instructions to be found here: https://github.com/google/protobuf/blob/master/src/README.md
For OS X it will suffice if you install protobuf via brew install protobuf
Thanks @TimMcCauley, that worked a treat for me.
@TimMcCauley Thanks Tim for your comment. I had the same issue as @shiro900 , and your linked helped configuring on mac. However, on windows, I still face the same problem.
Basically, I work from cygwin
terminal on Windows 7, and I miss the last command ldconfig
.
Do you have any advice to solve this issue?
@philippos86 - unfortunately not, does google help? https://www.google.de/search?q=ldconfig+cygwin&oq=ldconfig+cygwin&aqs=chrome..69i57j0l4.2300j0j7&sourceid=chrome&ie=UTF-8
@TimMcCauley I googled it already, apparently Idconfig
is only for mac.
Also, the documentation says it is only for mac os or linux:
https://imposm.org/docs/imposm/latest/#
so I am not sure if it could be configured for windows.
I am using python 2.7 and I am trying to
pip install imposm.parser
.The first thing I did was to install protobuf with
pip install protobuf
. That installed version 2.6.1 inC:\Python27\Lib\site-packages\google
. Then I went here to downloadprotoc-2.6.1-build2-windows-x86_32.exe
which I renamed toprotoc.exe
and placed inC:\Python27\Lib\site-packages\google
folder.I then installed Microsoft Visual C++ 9.0 from here
Finally, I executed
pip install imposm.parser
and this is the error I get:Edit: The header header file saying that is missing is from
protobuf
which I just installed withpip install protobuf
. The file missing is right here in the github google/protobuf/stubs/common.h shouldn't it exist on my system since I installed withpip
? I don't understand...