Astroquery:AttributeError(“'bytes'对象没有属性'encode'”)

时间:2014-06-16 13:08:06

标签: python astropy

我想运行astroquery package的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

1 个答案:

答案 0 :(得分:1)

这是astroquery的一个问题,是一个确认的错误: https://github.com/astropy/astroquery/pull/343

应该很快修复