Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Comments on How can I make a standalone executable from Python code?
Post
How can I make a standalone executable from Python code?
I know that I can make Python code run starting from the script, but this still requires the user to have Python installed (and will still rely on configuring the system so that it can find Python from the script, which can go wrong in a few different ways).
I want to be able to distribute my program to others who might not have Python installed, or even understand what Python is. I don't want to guide users through installing Python, or make an installer that does it for them (that seems like a lot of work, and ideally my program shouldn't need an installer at all). What other options do I have?
1 comment thread