0

我是一个 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'
4

1 回答 1

-1

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

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

import ete3
ete3.__file__

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

于 2018-12-19T12:48:03.760 回答