-4

Hi, is there a solution for this error code ?

Traceback (most recent call last):
  File "./weevely.py", line 2, in <module>
    from core.terminal import Terminal
  File "/Users/ismailtaibi/Desktop/isdo/scripts/weevely/core/terminal.py", line 6, in <module>
    from core.module import Status
  File "/Users/ismailtaibi/Desktop/isdo/scripts/weevely/core/module.py", line 14, in <module>
    from core.vectorlist import VectorList
  File "/Users/ismailtaibi/Desktop/isdo/scripts/weevely/core/vectorlist.py", line 15, in <module>
    from core.vectors import Os
  File "/Users/ismailtaibi/Desktop/isdo/scripts/weevely/core/vectors.py", line 11, in <module>
    from mako.template import Template
ImportError: No module named mako.template

Thanks.

Caleb Hearth
  • 3,315
  • 5
  • 30
  • 44
ismail
  • 55
  • 1
  • 2
  • 10

1 Answers1

2

The answer is pretty self explainatory and with a google search you could have solved everything in seconds.

Here you have a how to install pip if you don`t have it: How do I install pip on macOS or OS X?

After this type in the terminal: pip install Mako as stated in the official website: http://www.makotemplates.org/download.html

If this doesn`t work you can manually download the Mako package here: https://pypi.python.org/pypi/Mako/

Please, also read this carefully: https://stackoverflow.com/help/how-to-ask

F. Leone
  • 594
  • 3
  • 14