python-nmap模块运行报错'module' object has no attribute 'PortScanner'

2021/4/29 12:25:10

本文主要是介绍python-nmap模块运行报错'module' object has no attribute 'PortScanner',对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

python-nmap模块运行报错'module' object has no attribute 'PortScanner'

python使用nmap模块时报错

File "nmap.py", line 10, in
nm = nmap.PortScanner()
AttributeError: 'module' object has no attribute 'PortScanner'

解决方法

  卸载nmap模块和python-nmap模块,重新安装python-nmap即可。

#先卸载之前安装过的
pip uninstall nmap
pip uninstall python-nmap

#再进行安装
pip install python-nmap

OK,问题解决。

image-20210428160225852



这篇关于python-nmap模块运行报错'module' object has no attribute 'PortScanner'的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程