我已经安装了 APLpy(版本 0.9.12)并且我有 python 2.7。
我有一个名为“test.fits”的 FITS 图像。
我给出了以下命令:
import aplpy
fig = aplpy.FITSfigure("test.fits")
然后我收到了这条消息:
AttributeError: 'module' object has no attribute 'FITSfigure'
当我尝试以下操作时,我收到了相同的消息:
fig = aplpy.aplpy.FITSfigure("test.fits")
我是 python 和 APLpy 的新手。