Home > front end >  How to make a python exe with linux packges in it
How to make a python exe with linux packges in it

Time:04-25

How to make an exe that can have linux packges like nmap or so, without being installed by the user?

CodePudding user response:

You can use https://pyinstaller.org/ to package a python app and all its dependencies into a single package.

With this tool you can create executables for Windows, Linux and MacOS

  • Related