If I include following line in my python source file

from scapy.all import *

I get this error

from scapy.all import *
ImportError: No module named all

Which is true in Console and IDLE, but not eclipse. I am very much confused why this is happening. Can some one help me out?

link|improve this question

feedback

3 Answers

Spell scrapy right.


I assume this is a follup to this response to a prior question

edit: ignore this apparently he was interested in scapy as well

link|improve this answer
feedback

I think there was a change is scapy somewhere. I put the following code in my scapy projects so it remains compatible.

try:
    import scapy
except ImportError:
    del scapy
    from scapy import all as scapy
link|improve this answer
feedback

I think this may be a problem with your version

Depending on your version a simple

from scapy import *

is all that is required

Hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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