pyVmomi入门

Posted EchoRep

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyVmomi入门相关的知识,希望对你有一定的参考价值。

简要说明

pyVmomi is the Python SDK for the VMware vSphere API that allows you to manage ESX, ESXi, and vCenter.

环境配置:

  1. 网络环境:
    安装pyvmomi的server和VMware vCenter 网络打通;
  2. 系统环境:
    pyvmomi用pip安装,所以需要有python和pip;pyvmomi 6.0.0需要的python版本支持为2.7, 3.3 和 3.4, 支持的vSphere 版本为:6.0, 5.5, 5.1 和 5.0。

安装插件:

  1. $sudo apt-get install python-pip
  2. $sudo pip install pyvmomi
  3. $sudo pip freeze | grep pyvmomi 查看安装的pyvmomi版本,现在是6.0版本
  4. pyvmomi==6.0.0 如果已经安装过,升级用pip install --upgrade pyvmomi

或者也可以下载源码包安装,

$sudo python setup.py install

使用插件

pyvmomi提供了一些社区样本项目,可以参考编写自己的代码:
git clone





以上是关于pyVmomi入门的主要内容,如果未能解决你的问题,请参考以下文章

PyVmomi 添加带有未连接 dvs 的 NIC('config.distributedVirtualSwitch' 未设置)

pyvmomi-community-samples (vmware python api)

推荐net开发cad入门阅读代码片段

Python心得--如何提高代码质量

Atom编辑器入门到精通 Atom使用进阶

Cg入门20:Fragment shader - 片段级模型动态变色(实现汽车动态换漆)