2016-09-09 28 views
2

我为我的Windows 8.1电脑安装了python 3.5。我需要为这个版本安装scapy(我删除了最后一个的所有文件)。我如何下载并安装它?无论我如何搜寻,都找不到任何有助于我这样做的事情。在命令行为python 3.5下载并安装scapy for windows?

+0

[Scapy和Python 3.2]的可能重复(https://stackoverflow.com/questions/9502645/scapy-and-python-3-2) – Cukic0d

回答

4

使用 pip3 install scapy-python3 ,你会得到它

+1

Watch出来,与scapy-python3提供的版本是超级过时的:/我不得不从github下载它https://github.com/secdev/scapy – Cukic0d

+0

你能告诉我哪些其他模块我必须安装运行一个scapy程序在窗口 – Yusuf

+0

@Yusuf看看文档:http://scapy.readthedocs.io/en/latest/installation.html#windows – Cukic0d

1

Scapy支持Python 3.3到3.6(和2.7),但到目前为止,还没有发布。目前,您必须从https://github.com/secdev/scapy获取当前的开发版本并进行安装。

更新:你现在可以安装使用pip3 install --pre scapy一个2.4.0发布候选(--pre意味着你接受非稳定版)。