Alexander Rey
Alexander Rey

Reputation: 23

Installing Scapy on anaconda python 3. Windows 10-64

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

Answers (2)

UDIT PATEL
UDIT PATEL

Reputation: 123

  1. Go To: https://anaconda.org/anaconda/scapy
  2. Click on 'Files' tab
  3. Download Latest Package
  4. Extract with '7zip' or other extractor software
  5. Open 'Anaconda' Click on 'Environment' on Left side
  6. Click on 'import'
  7. Locate the extracted directory and open '.yml' file
  8. Click on Anaconda->Environment -> 'update index'

Upvotes: 0

lovinghate
lovinghate

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

Related Questions