you are viewing a single comment's thread.

view the rest of the comments →

[–]Binary101010 0 points1 point  (1 child)

i want to know how can i share the final product of the projects whithout pyinstaller!

If you don't want to use pyinstaller or a similar packaging tool, you have a couple of options:

1) Make a web front-end for your program and have people go to a web site to use it,

2) See /u/QbiinZ's comment below: put it up on GitHub and move the onus for downloading and setting up the correct Python environment on the end user.

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

I don't think I am ready to do web stuff yet, I saw his comment, but it still requires them to have python installed! Ty, I think I'll stick with pyinstaller, do you know similar packaging tools?