Let's say that I write a program in Python that uses wxPython. If I want my completed project to eventually run on someone else's computer, someone who probably isn't a programmer, what is this easiest way to do this?
Furthermore, if I package the Python script somehow, do I have to also include all of the modules that it was dependent on to run?
For example, if I import os
and import wx
, do the os
and wx
files have to be included in my final package?