DedSecInside / TorBot

Dark Web OSINT Tool
Other
2.88k stars 526 forks source link

No module named 'ete3' #177

Closed truesamurai closed 4 years ago

truesamurai commented 4 years ago

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 commented 4 years ago

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 commented 4 years ago

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

disparata commented 3 years ago

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.