我和pyvmomi一起玩,我设法得到了#34;样本"脚本(getallvms.py)正在工作。
我现在正在尝试我在这里找到的其他脚本: https://raw.githubusercontent.com/vmware/pyvmomi-community-samples/master/samples/vminfo_quick.py
当我运行此脚本时,我收到以下错误:
Iwans-Mac:sample iwan-home-folder$ python vminfo_quick.py -s 10.11.11.215 -u pyvmomi-user@sso-iwan.local -p VMware1!
Traceback (most recent call last):
File "vminfo_quick.py", line 19, in <module>
from tools import cli
ImportError: No module named tools
我不确定如何安装模块&#34;工具&#34;。 有人能告诉我应该如何继续吗?
谢谢, 伊万
答案 0 :(得分:1)
您尝试运行的脚本应从示例项目目录运行。要获得最大成功,您需要克隆项目:
git clone https://github.com/vmware/pyvmomi-community-samples
cd pyvmomi-community-samples/samples
python vminfo_quick.py xxxx
一旦这样做,导入问题就会消失。如果你查看samples目录,你会发现tools / cli正在尝试导入。