AlessandroZ / LaZagne

Credentials recovery project
GNU Lesser General Public License v3.0
9.43k stars 2.02k forks source link

When I compile it and try to run it on Linux it does not work #642

Closed Aggelos11 closed 3 months ago

Aggelos11 commented 4 months ago

I do pyinstaller —onefile Zalagne.py and it is compiled successfully . However when I try to run it with ./Lazagne all I get the following error : IMG_8449 IMG_8450

AlessandroZ commented 3 months ago

Modules are imported dynamically so pyinstaller cannot follow them.

Here are some ways to do it:

Or if you prefer using Nuitka instead of pyinstaller:

python3 -m nuitka --standalone --onefile --include-package=lazagne laZagne.py