Centos 上没有模块名称 netmiko

No module name netmiko on Centos

第一次在Centos上使用netmiko模块

我在使用 Python(2.7.5).

时一直收到以下消息

如果我用Python(3.6.8),会是这样:

我已经确认我确实安装了 netmiko。

这可能是一个问题,因为您的系统 python 版本不同。也许您可以通过调用特定 python 版本的 pip 模块来安装它。

因此,对于 python 3.x 您可以执行以下操作:

python3 -m pip install netmiko

同样,对于python 2.x你可以执行:

python -m pip install netmiko

我试过 python 3.x 命令,效果很好。

python3 -m pip install netmiko

python 2.x 命令无效。 似乎最新的 netmiko 不再支持 3.x 下的 python 版本。