我为 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”适合其他配置?