Distributing a textual application cross platform (.exe
, .dmg
, .deb
)
#3834
-
We are interested in distributing our application as a standalone tool for user convenience. This would entail bundling our application with Pyinstaller along with a terminal (or multiple terminals, one for each platform) that support proper rendering of I was wondering if this has come up before or anyone had experience with this? I am sure some possible approaches will become apparent after some time playing around but was wondering if this was something that is standard / already optimised? I could not find much googling it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
There's no "standard" approach to this right now; but I do remember a couple of people talking about approaches they've taken, on our Discord server -- although I seem to remember them being a little more platform-specific. I think @lllama has done some experimenting around this for example. |
Beta Was this translation helpful? Give feedback.
-
you can also take a look at Nuitka: https://github.com/Nuitka/Nuitka/ |
Beta Was this translation helpful? Give feedback.
Thanks a lot that's really useful!