连接 ZWO Camera 和 zwoasi
Connecting ZWO Camera with zwoasi
我一直在尝试将 ZWO 相机与 zwoasi 连接,但是当我尝试获取已连接相机的 ID 时,我得到了
"AttributeError: 'NoneType' object has no attribute
'ASIGetNumOfConnectedCameras'".
这是否意味着相机连接不正确?如果是这样,我如何确保它已连接?我还尝试 运行 使用 zwoasi 的可执行文件,但出现此错误:
The filename of the SDK library is required (or set
ZWO_ASI_LIB environment variable with the filename)
An exception has occurred, use %tb to see the full traceback.
我 运行 在 Windows 10
上使用 spyder 4.2.5
我尽量回答第二个问题,我觉得需要你安装SDK,或者找到SDK通过路径导入,先试试
pip install sdk
conda install sdk
取决于您的终端所在的位置
要使用路径导入,请执行以下操作:
import importlib.util
spec = importlib.util.spec_from_file_location("module.name", "/path/to/file.py")
foo = importlib.util.module_from_spec(spec)
spec.loader.exec_module(foo)
foo.MyClass()
除此之外我无法帮助您,因为我对图书馆不熟悉,抱歉。如果您还需要什么,请告诉我
我发现解决方案是我必须从 zwoasi 网站下载 SDK:
https://astronomy-imaging-camera.com/software-drivers
在“开发者”选项卡下
我一直在尝试将 ZWO 相机与 zwoasi 连接,但是当我尝试获取已连接相机的 ID 时,我得到了
"AttributeError: 'NoneType' object has no attribute
'ASIGetNumOfConnectedCameras'".
这是否意味着相机连接不正确?如果是这样,我如何确保它已连接?我还尝试 运行 使用 zwoasi 的可执行文件,但出现此错误:
The filename of the SDK library is required (or set
ZWO_ASI_LIB environment variable with the filename)
An exception has occurred, use %tb to see the full traceback.
我 运行 在 Windows 10
上使用 spyder 4.2.5我尽量回答第二个问题,我觉得需要你安装SDK,或者找到SDK通过路径导入,先试试
pip install sdk
conda install sdk
取决于您的终端所在的位置
要使用路径导入,请执行以下操作:
import importlib.util
spec = importlib.util.spec_from_file_location("module.name", "/path/to/file.py")
foo = importlib.util.module_from_spec(spec)
spec.loader.exec_module(foo)
foo.MyClass()
除此之外我无法帮助您,因为我对图书馆不熟悉,抱歉。如果您还需要什么,请告诉我
我发现解决方案是我必须从 zwoasi 网站下载 SDK:
https://astronomy-imaging-camera.com/software-drivers
在“开发者”选项卡下