AppImageCrafters/appimage-builder-python-example

ModuleNotFoundError: No module named 'pyfiglet'

ikreb7 opened this issue · 0 comments

I clone your repo and run

appimage-builder --recipe appimage-builder.yml

I get the error: ModuleNotFoundError: No module named 'pyfiglet'.

But the requirements.txt contains pyfiglet and the logs are

Requirement already satisfied: pyfiglet in /home/ikreb/.local/lib/python3.8/site-packages (from -r ./requirements.txt (line 1)) (0.8.post1)

Then I uninstalled the module pyfiglet and got this log message:

 Installing collected packages: pyfiglet
 WARNING: The script pyfiglet is installed in 'AppDir/home/ikreb/.local/bin' which is not on PATH.
 Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
 Successfully installed pyfiglet-0.8.post1

But also if I add ${APPDIR}/home/ikreb/.local/bin to the PATH variable, it doesn't help.