-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with pip install imposm.parser, header files not found #18
Comments
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 |
I also got the problem. were you ever successful in setting this up? |
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: For OS X it will suffice if you install protobuf via |
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. |
@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 |
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...The text was updated successfully, but these errors were encountered: