2

I installed python 3.5 for my windows 8.1 computer. I need to install scapy for this version (I deleted all the files of the last one). How do i download and install it? can't find anything that help me to do that no matter how i searched.

T Hod
  • 39
  • 1
  • 2
  • 5
  • Possible duplicate of [Scapy and Python 3.2](https://stackoverflow.com/questions/9502645/scapy-and-python-3-2) – Cukic0d Feb 04 '18 at 12:51

3 Answers3

5

use pip3 install scapy-python3 and you will get it

Zeroxus
  • 67
  • 1
  • 2
  • 1
    Watch out, the version provided with scapy-python3 is super outdated :/ I had to download it from github https://github.com/secdev/scapy – Cukic0d Dec 30 '17 at 23:07
  • can you tell me which others modules i have to install to run a program of scapy in windows – Yusuf Jan 01 '18 at 20:51
  • @Yusuf have a look on the doc: http://scapy.readthedocs.io/en/latest/installation.html#windows – Cukic0d Feb 04 '18 at 12:52
2

Scapy supports Python 3.3 to 3.6 (and 2.7) but, so far, no release has been made. For now, you have to get the current development version from https://github.com/secdev/scapy and install it.

Update: you can now install a 2.4.0 release candidate using pip3 install --pre scapy (--pre means you accept non-stable release).

Update: Scapy 2.4.0 has been released. You can now use pip3 install scapy!

Pierre
  • 6,047
  • 1
  • 30
  • 49
-1

Use pip from the command line:

pip install scrapy

Apologies, realised that according to the docs scrapy is not supported on Windows with Python 3.x due to missing dependency (Twisted)

Source: http://doc.scrapy.org/en/latest/intro/install.html

jhole89
  • 718
  • 9
  • 28