错误:您的 python-requests 版本已过时。请升级

Ham*_*mza 1 python linux wapiti

我的问题是每当我发出命令时wapiti它都会给我这条消息:

root@ kali: ~#wapiti
Wapiti - 2.3.0(wapiti.sourceforge.net)
Error: You have an outdated version of python - requests.Please upgrade 
Run Code Online (Sandbox Code Playgroud)

我已经将其升级到最新版本:

root@kali:~#  apt-get install python-requests
Reading package lists... Done
Building dependency tree       
Reading state information... Done
python-requests is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@kali:~# apt-get install wapiti
Reading package lists... Done
Building dependency tree       
Reading state information... Done
wapiti is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Run Code Online (Sandbox Code Playgroud)

我的 kali 版本是最新的,我已经下载了 Iso 和镜像其他版本来解决它,但我在每个版本中都遇到了它......如果这有帮助的话,我是 amd64。

小智 5

执行以下命令升级requests模块:

pip install requests --upgrade
Run Code Online (Sandbox Code Playgroud)