Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having difficulty installing a Python module on Windows. There are dependencies with the libpcap and winpcap libraries.

When trying to run 'setup.py' I receive fatal errors and the script aborts like the one below

Cannot open include file: 'pcap.h': No such file or directory

I downloaded the source files and included them in my PATH Environmental Variable but they don't seem to be resolved. I am able to systematically locate and move files into the expected directory structure like the 'pcap.h' from the error above. However it would be much easier to have the script reference the correct libraries so I don't have to hack it for my box.

I assume I need to the modify portion of the code below in setup.py

bpf = Extension(name='bpf',
        sources=[ 'pcs/bpf/bpf.pyx' ],
        include_dirs=['/usr/include/pcap'],
        library_dirs=['/usr/lib'],
        libraries=['pcap']
    )

I have tried running install using both cygwin and minigw

share|improve this question
1  
you missed a closing single quote on include_dirs – eat_a_lemon May 2 '11 at 5:48
thanks, I fixed my post – amadib May 2 '11 at 6:19

2 Answers

up vote 1 down vote accepted

Have you tried the build instructions?

winpcap development is free. http://www.winpcap.org/install/bin/WpdPack_4_0_2.zip

1) Download MinGW32. Install to c:\wingw32
2) path=%path%;c:\wingw32\bin
3) Download winpcap development pack from above. Unzip to c:\WpdPack
4) From pypcap-1.1 directory. 
   > python .\setup.py --with-pcap="C:\WpdPack"
   > python .\setup.py build -cmingw32
   > python .\setup.py install
share|improve this answer

Thanks for your response. I marked your answer correct because it seemed to have resolved the pcap.h header issue and now since finally being able to try it out this is what I get:

C:\Users\computer\Development\pcs-0.7>python setup.py config --with-pcap="C:\WpdPack" running config
found {'libraries': ['wpcap', 'iphlpapi'], 'library_dirs': ['C:\\WpdPack\\lib'], 'extra_compile_args': ['-DWIN32', '-DWPCAP'], 'include_dirs': ['C:\\WpdPack\\include/pcap']}

C:\Users\computer\Development\pcs-0.7>python setup.py build -cmingw32
running build
running build_py
running build_ext
skipping 'pcs/bpf\bpf.c' Cython extension (up-to-date)
building 'bpf' extension
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe /c /nologo /Ox/MD /W3 /GS- /DNDEBUG -I/usr/include/pcap -IC:\Python26\include -IC:\Python26\PC /Tcpcs/bpf\bpf.c /Fobuild\temp.win32-2.6\Release\pcs/bpf\bpf.obj 
bpf.c
c:\users\computer\development\pcs-0.7\pcs\bpf\pcap.h(41) : fatal error C1083: Cannot open include file: 'pcap-stdinc.h': No such file or directory
error: command '"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\cl.exe"' failed with exit status 2

Any ideas?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.