我已经安装了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。
答案 0 :(得分:1)
你的专栏:
fig = aplpy.FITSfigure("test.fits")
拼写错误必须是:
fig = aplpy.FITSFigure("test.fits")