There are a lot of ways to create an executable file from python application, But can't find any way to package executable file to installable file in the ubuntu platform.
Asked
Active
Viewed 119 times
1 Answers
0
You can use Pyinstaller which is multiplatform and support for QT ootb, assuming that you want a single executable file:
pyinstaller --clean --windowed --onefile /path/to/main/python/file

RMPR
- 3,368
- 4
- 19
- 31
-
Thanks for the help. Can you please tell me how to create an installer or built distribution from this..? – SARATH IR Apr 21 '20 at 03:26