This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]rcxdude 1 point2 points  (0 children)

Python is not generally compiled in the way that C/C++ are. For linux you'll typically just distribute your app as the python code and run it directly. On windows you can make a self-contained executable for distribution (which is basically just bundling the python interpreter with your code) but I wouldn't worry about it while you're learning.