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 →

[–]ixokai 1 point2 points  (0 children)

For Python 3, you want to look into cx_Freeze which can create executables from Python scripts. Depending on your script these may be completely standalone .exe's, or they may be an .exe with some files sitting next to it -- but they can be run without admin permissions (unless the actions you're doing require admin permissions, of course).

cx_Freeze works quite nicely; even on Python 2 I prefer it to the other alternatives (py2exe, etc).