tlsfuzzer / tlsfuzzer

SSL and TLS protocol test suite and fuzzer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to fix this "ModuleNotFoundError: No module named 'tlsfuzzer'"

sajualways opened this issue · comments

I get this below error when i try to execute below
python scripts/test-conversation.py
Traceback (most recent call last):
File "scripts/test-conversation.py", line 11, in
from tlsfuzzer.runner import Runner
ModuleNotFoundError: No module named 'tlsfuzzer'

run with specifying in environment where the modules can be found:

PYTHONPATH=. python scripts/test-conversation.py

Thanks !