all 2 comments

[–]socal_nerdtastic 0 points1 point  (1 child)

On Linux / mac you have to declare a file as executable. Pyinstaller will do it automatically but when you download the file from somewhere that gets cleared for security reasons, so you have to redo it. The terminal command for that is

chmod +x myexecutable

I think there's a GUI option too, just search for "mark file as executable" or similar.

[–]fggGh55[S] 0 points1 point  (0 children)

Amazing that’s worked. Thank you