python - “ImportError: No module named scapy.all” Rasberry PI Rasbian -


i've verified have scapy installed (ran requirements.txt , installed scapy) checked /usr/share/pyshared folder , made sure scapy install went there. reinstalled scapy, not sure why i'm still getting error. i've tried changing import scapy import * scapy.all

what version of python have? scapy works 2.7. if doesn't work should make sure install pip install:

pip install scapy 

the way import matters well, way import is:

from scapy.all import * 

Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -