没有名为 'nornir_utils' 的模块

No module named 'nornir_utils'

我正在尝试使用 nornir,但我明白了

当我尝试这个时:

from nornir.plugins.functions.text import print_result

我明白了:

ModuleNotFoundError: No module named 'nornir.plugins.functions.text'

我也试过这个:

from nornir_utils.plugins.functions import print_result

问题依旧:

ModuleNotFoundError: No module named 'nornir.plugins.functions.text'

谁能帮我解决这个问题?

正在查看 nornir module docs there is no print_result function, but it is present in the nornir_utils 模块。

nornir中的插件有四个,看here

您可以将 nornir_utils 模块安装为 pip install nornir_utils,将 nornir 模块安装为 pip install nornir

要执行的正确导入是 from nornir_utils.plugins.functions import print_result

确保使用正确的 pip 来安装软件包,有时我安装在错误的环境中有多个 python 安装。