我是使用 python 进行光度测量的新手,所以我正在学习关于背景提取、光圈光度学等的 Photutils 教程我在 Python 3 中使用笔记本并使用 anaconda 下载了最新的 Photutils 包。当我尝试这样做时:
from photutils import CircularAperture
positions = [(30., 30.), (40., 40.)]
apertures = CircularAperture(positions, r=3.)
from astropy import units as u
from astropy.coordinates import SkyCoord
from photutils import SkyCircularAperture
positions = SkyCoord(l=[1.2, 2.3] * u.deg, b=[0.1, 0.2] * u.deg,
frame='galactic')
apertures = SkyCircularAperture(positions, r=4. * u.arcsec)
我收到错误无法导入名称'NUMPY_LT_1_14_1'
从 photutils import Background2D、MedianBackground 和 import make_source_mask 也会发生同样的情况
请问有什么想法吗?
谢谢!海伦