After pip install . this happens:
$ fuzzman -h
Traceback (most recent call last):
File "/home/user/git/fuzzaide/.venv/bin/fuzzman", line 5, in <module>
from fuzzaide.tools.fuzzman.fuzzman import main
ModuleNotFoundError: No module named 'fuzzaide.tools'
Temporary workaround is to install the package in editable mode:
python3 -m venv .venv
. .venv/bin/activate
pip install -e .[all]
After
pip install .this happens:Temporary workaround is to install the package in editable mode: