请原谅我的无知,但我似乎无法使用Python 2.7或3.6.1安装OpenOPC。我找到了github code但它似乎没有包含安装程序。所以我试图从here安装2.7的版本。我可以使用说明使OpenOPC服务器通话,但在将python 3项目中的所有文件复制到我的python目录后,我可以导入OpenOPC,但是当我尝试opc = OpenOPC.client()
时,我遇到了错误。
C:\>python Python 3.6.1 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:25:24) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import OpenOPC >>> opc = OpenOPC.client() Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'OpenOPC' has no attribute 'client' >>>