python 找不到 nmap 模块

python nmap module could not be found

Python版本和pip列表如下所示

C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64>python --version
Python 3.6.6

C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64>pip list
DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
Package     Version
----------- -------
pip         19.1.1
python-nmap 0.6.1
setuptools  28.8.0

但是,当我尝试在代码中导入 nmap 模块时,我看到以下内容。

No module named 'nmap'
Stack trace:
 >  File "C:\Users\root\source\repos\PythonApplication3\PythonApplication3\PythonApplication3.py", line 1, in <module>
 >    import nmap

我做错了什么?

更新
我也安装了 pip3。下面是它的输出,显示 nmap 模块存在。

C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64>pip3 list
DEPRECATION: The default format will switch to columns in the future. You can use --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
pip (9.0.3)
python-nmap (0.6.1)
setuptools (39.0.1)
You are using pip version 9.0.3, however version 19.1.1 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

尝试从全局位置卸载它并将其安装到您的用户环境。

首先使用以下方法卸载软件包:

pip3 uninstall python-nmap

然后 re-install 它使用 --user 标志:

pip3 install --user python-namp

针对您与 nmap program was not found in path

相关的问题

您可能想查看此线程:Not found in path while calling PortScanner

另外 python-nmap 没有安装 GUI 版本,这可能是这里的原因。在以下位置找到安装:Install nmap link