简体   繁体   中英

Download and install scapy for windows for python 3.5?

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.

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

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 !

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM