APLpy attribute error : 'module' object has no attribute 'FITSfigure'

380 Views Asked by At

I have installed APLpy (version 0.9.12) & I have python 2.7.

I have a FITS image called "test.fits".

I gave following commands:

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

Then I got this message:

AttributeError: 'module' object has no attribute 'FITSfigure'

I got same message when I tried following:

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

I am new to python & APLpy.

1

There are 1 best solutions below

2
On

Your line:

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

is spelled wrong it has to be:

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