Reputation: 23
I am trying to install scapy on my anaconda. I am using windows 10. Everytime i try to install scapy for windows -64 it does not install. I install from the prompt. any other ideas, please :/
Upvotes: 2
Views: 4268
Reputation: 123
Upvotes: 0
Reputation: 63
Did you try to install scapy with pip3
?
pip3 install scapy
Or you can try to install it like this:
conda install -c conda-forge scapy
You need to check that you are installing it with the same python version than the one you are using
Upvotes: 1