I\'m trying to install pypcap from: https://github.com/dugsong/pypcap/blob/master/INSTALL#L75
I\'m trying to install it on Windows 10 - 64 bit and python 2.7.11 64 b
Unzip the WinPcap Developer pack so that you have C:\WpdPack\Include
and C:\WpdPack\Lib
Unzip the pypcap source so that you have C:\pypcap-1.1.4\setup.py
Install the Microsoft Visual C++ Compiler for Python 2.7
Start the relevant cmd prompt for your Python27 bitness from:
Start -> Programs -> Microsoft Visual C++ Compiler Package for Python 2.7
Install/build pypcap from that cmd prompt with:
set INCLUDE=%INCLUDE%;c:\WpdPack\Include
set LIB=%LIB%;c:\WpdPack\Lib
pushd C:\pypcap-1.1.4
python setup.py install