python3 上的 ete3 模块 - 无法导入 TreeStyle、faces、AttrFace、NodeStyle



我是一个Linux用户,到目前为止,我已经成功地在python2中使用了ete3。

我为 python3 安装了 ete3,并且有一些模块是 python3 找不到的。我相信我已经按照说明安装了所有依赖项。

我可以从 ete3 导入 ete3 和 Tree,但不能导入到目前为止我使用的任何其他内容。

关于如何解决这个问题的任何线索?

~$ python3
Python 3.4.3 (default, Nov 28 2017, 16:41:13)
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ete3
>>> from ete3 import Tree
>>> from ete3 import TreeStyle
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
ImportError: cannot import name 'TreeStyle'
>>> from ete3 import faces
Traceback (most recent call last):
 File "<stdin>", line 1, in <module>
ImportError: cannot import name 'faces'
>>> from ete3 import AttrFace
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name 'AttrFace'
>>> from ete3 import NodeStyle
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: cannot import name 'NodeStyle'

我设法安装了依赖项。问题是 ete3 没有正确报告缺少的依赖项。

您可以使用此代码查看缺少哪些依赖项:

import ete3
ete3.__file__

我多次运行它并安装每次抱怨的软件包,直到它最终工作!

相关内容

  • 没有找到相关文章

最新更新