0

我已经安装了 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 的新手。

4

1 回答 1

1

您的线路:

fig = aplpy.FITSfigure("test.fits")

拼写错误它必须是:

fig = aplpy.FITSFigure("test.fits")
于 2014-09-29T09:00:18.713 回答