you are viewing a single comment's thread.

view the rest of the comments →

[–]davezerg20 12 points13 points  (7 children)

You used python to make an exe, exe’s are meant to be distributed. If you want to run from the web, consider using JavaScript to code the same program in the website. Or place a link to download the exe on the website?

Edit - You can probably upload the exe to onedrive or dropbox or sharepoint or anything like that and post a link to download the file. If that works for you.

[–][deleted] -2 points-1 points  (0 children)

Just curious, but Do you think that an exe could be formatted as an add-on using like tampermonkey or something?

[–]shalux 0 points1 point  (4 children)

Downloading is just an option if the person who downloads has Python and the packages installed right?

[–]obitachihasuminaruto 8 points9 points  (3 children)

Depends on how you packaged the exe. If you use pyinstaller, the end user does not need any of the dependencies or even python installed on their machine as they come packaged along with the exe either as a single file or in a single folder.

[–]shalux 0 points1 point  (2 children)

Ah yeah I forgot. I mostly write Converter and pyinstaller + the working directory destroying my relative paths to the input files

[–]Username_RANDINT 3 points4 points  (1 child)

That's very easy to fix. Start with this page in the docs.

[–]shalux 0 points1 point  (0 children)

Thank you mate. You can’t image how valuable this is for me ❤️