我有 pyroot 的问题。当我尝试导入 ROOT 直方图时,我总是得到相同的 AttributeError。
>>> from ROOT import TH1F
AttributeError: type object 'TArray' has no attribute '__getitem__'
During handling of the above exception, another exception occurred:
SystemError: <built-in method mro of ROOT.PyRootType object at 0x328fb18> returned a result with an error set
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'TH1F'
我还尝试了 rootpy ,但它不起作用。大概有关系?
我安装了 Python 3.5,并使用 gcc 5.2.0 进行了 ROOT 的全新安装。Python 模块在我运行时列出root-config --features
。
有任何想法吗?还是解决方案?