0

我为 python 2.7 安装了 Anaconda 发行版(一切正常),然后我在安装 SunPy 之后安装了SunPy

要安装 SunPy 的额外依赖项,请运行:

conda update astropy
pip install suds

要安装运行:

pip install sunpy

但是当我运行这样的事情时:

from astropy.io import fits
file = fits.open("file.fits")
file = file[0].data

我在安装 SunPy 和更新 Astropy 之前没有出现这个警告

警告:AstropyDeprecationWarning:文件“C:\Users\nandhos.astropy\config\astropy.cfg”的 [io.fits] 部分中的配置参数“enabled_record_valued_keyword_cards”已弃用。请改用 [fits] 部分中的“enable_record_valued_keyword_cards”。[astropy.config.configuration]

显然,一切正常,只是我想知道为什么会出现这条消息。如何使用部分中的“enable_record_valued_keyword_cards”适合其他配置?

4

1 回答 1

2

消除警告的最简单方法是简单地删除~/.astropy/config/astropy.cfg文件,如果您之前没有编辑过它。这应该在 astropy 的后续版本中修复。

于 2014-07-21T07:45:44.860 回答