Open GoogleCodeExporter opened 9 years ago
what pcap version, what platform?
Original comment by dugsong
on 15 Dec 2009 at 3:23
I encountered this same issue. When I perform a setup.py "config" and "install"
it
appears that pcap.so is not linked against -lpcap. However running "config",
"build",
and then "install" fixed the issue for me.
Original comment by garron.m...@gmail.com
on 25 Feb 2010 at 6:13
The following change to setup.py fixes the issue for me:
--- setup.py.orig 2010-03-16 11:20:42.000000000 -0700
+++ setup.py 2010-03-16 11:20:56.000000000 -0700
@@ -78 +78 @@
-if len(sys.argv) > 1 and sys.argv[1] == 'build':
+if len(sys.argv) > 1 and sys.argv[1] in ('build', 'install'):
Original comment by garron.m...@gmail.com
on 16 Mar 2010 at 6:25
I encountered this same issue . I have modified the setup.py , but this issue
still exists.
Original comment by liuzhen1984@gmail.com
on 26 Oct 2010 at 5:49
garron.m...@gmail.com <--- I followed your steps and this resolved the same
issue for me. I was stuck on it for over an hour, thanks!
Original comment by theycall...@gmail.com
on 13 Sep 2012 at 7:31
i got the following error, did all but unable to resolve it
Original comment by 11msccst...@seecs.edu.pk
on 22 Nov 2012 at 2:40
>>> import pcap
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: /usr/local/lib/python2.7/site-packages/pcap.so: undefined symbol:
pcap_compile_nopcap
Original comment by 11msccst...@seecs.edu.pk
on 22 Nov 2012 at 2:40
Original issue reported on code.google.com by
spiffypi...@gmail.com
on 20 Oct 2009 at 6:22