0
I created a solution based on pymupdf and some other libraries. I used pyinstaller to create exe file that runs on windows. I want to create similar executable file to be run on linux (fedora or ubuntu…) what is the correct way to make that. I don’t want my script code to be seen by others that’s why I created the exe file in first place.
I don’t want to create a windows exe inside linux but something pure for linux
python 3.10
thanks
the solution I am trying now is to create a tkinker Gui for my program.
3
You need to create that ON a Linux system.
2 hours ago
I’d assume you’d use something like
#!/bin/python3
in the script on a linux system.2 hours ago
just doing what you did on windows on linux will do what you want … but you have to do it inside a linux OS, not on windows, maybe use a linux VM.
1 hour ago
|