Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No module named 'ete3' #177

Closed
truesamurai opened this issue Feb 18, 2020 · 3 comments
Closed

No module named 'ete3' #177

truesamurai opened this issue Feb 18, 2020 · 3 comments

Comments

@truesamurai
Copy link

I did a fresh install on latest Kali and get this error:
Traceback (most recent call last):
File "torBot.py", line 10, in
from modules.analyzer import LinkTree
File "/usr/local/lib/python3.7/dist-packages/PyInstaller/loader/pyimod03_importers.py", line 627, in exec_module
exec(bytecode, module.dict)
File "modules/analyzer.py", line 6, in
from ete3 import Tree, TreeStyle, TextFace, add_face_to_node
ModuleNotFoundError: No module named 'ete3'
[6494] Failed to execute script torBot

I checked and ete3 is already installed but still get this error

@KingAkeem
Copy link
Member

Which version of pip are you using? I just performed a fresh install on a Ubuntu machine with v9.0.1 and python 3.6.

@PSNAppz
Copy link
Member

PSNAppz commented Apr 6, 2020

@sh1va73 If you are using python3 with pip3 try running pip3 install ete3
otherwise withpip try pip install ete3

@PSNAppz PSNAppz closed this as completed May 17, 2020
@PSNAppz PSNAppz mentioned this issue Jun 16, 2020
@disparata
Copy link

Since this is the very first google entry you will find when searching for this error, here is the solution:

As I wrote in this answer, the easy solution for this is to uninstall and then install the module again using pip3.

Just run

pip3 uninstall <your_module_name>
pip3 install <your_module_name>

So here you should run

pip3 uninstall ete3
pip3 install ete3

I had to do this for several modules. See my other answer which I linked above.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants