-
Notifications
You must be signed in to change notification settings - Fork 172
quickstart
qiannian edited this page Aug 14, 2023
·
3 revisions
cd <path of op>
# 注册32位
regsvr32 op_x86.dll
# 注册64位
# regsvr32 op_x64.dll
python -m pip install pywin32
新建一个 python 脚本,输入以下代码:
# import moudles 导入pywin32的 Dispatch 函数
from win32com.client import Dispatch
# create op instance 创建op对象
op=Dispatch("op.opsoft")
# print version of op 打印op插件的版本
print(op.Ver())
如果一切正常,将会输出
0.4.2.0