You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At least on my Mac, using Python 3.5, pyVim cannot be found but pyvim can be found. The difference is only the capitalization:
$ python3.5
Python 3.5.2 |Anaconda 4.1.1 (x86_64)| (default, Jul 2 2016, 17:52:12)
[GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import ataxia
>>> import argparse
>>> import sys
>>> import time
>>>
>>> from pyVmomi import vim, vmidl
>>> from pyVim import connect
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'pyVim'
>>> from pyVim.connect import Disconnect
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named 'pyVim'
>>> from pyvim import connect
>>>
Is it me? Am I missing something obvious?
The text was updated successfully, but these errors were encountered:
At least on my Mac, using Python 3.5, pyVim cannot be found but pyvim can be found. The difference is only the capitalization:
Is it me? Am I missing something obvious?
The text was updated successfully, but these errors were encountered: