fuzzah/fuzzaide

python installation is broken

Opened this issue · 0 comments

fuzzah commented

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]