0

安装应用程序

按 Command+Space 并键入 Terminal,然后按 enter/return 键。

在终端应用程序中运行: ruby​​ -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install )" < /dev/null 2> /dev/null

并按回车键。

等待命令完成。运行: brew install pwntools 完成!您现在可以使用 pwntools。

我使用这个链接 ,但它不起作用......

❯ python
Python 2.7.10 (default, Jul 15 2017, 17:16:57)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> from pwn import *
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named pwn
4

1 回答 1

1

蟒蛇2:

python -m pip install pwntools

蟒蛇3:

python3 -m pip install pwntools
于 2020-08-25T19:56:28.217 回答