0

我想运行astroquery 包的 NED 查询。

from astroquery.ned import Ned
result_table = Ned.query_object("NGC 224")

这是由纪录片中的示例给出的。

我遇到了以下问题:

TableParseError: Failed to parse NED result! The raw response can be found in
self.response, and the error in self.table_parse_error.

在 self.table_parse_error 我发现:

 AttributeError("'bytes' object has no attribute 'encode'")

我不知道出了什么问题。

这是我的版本:

Python  3.4.1 (default, May 19 2014, 17:23:49) [GCC 4.9.0 20140507 (prerelease)]
SciPy   0.14.0
Cython  0.20.1
OS      posix [linux]
Numpy   1.8.1
IPython 2.1.0
4

1 回答 1

1

这是作为 astroquery 的一个问题提出的,并且是一个已确认的错误: https ://github.com/astropy/astroquery/pull/343

它应该很快修复

于 2014-06-16T14:04:35.263 回答