On Wed, Jun 18, 2008 at 11:29 PM, Sean Novak <[EMAIL PROTECTED]> wrote:
> Hello Python Guru's and Newbies alike.  I've been able to write a bit of
> Python for a web app that works wonderfully on my dev machine.  However, I
> have limited access to the machine that will actually host this app.  Will
> compiling a Python program eliminate library dependency requirements for the
> host machine?  Essentially, are the libraries compiled into the binary?

You can use py2exe or py2app to create an executable that includes the
libraries. This is not compiling, it is more a packaging step.

You may also be able to include the libraries in the same directory as
your app. What kind of access do you have to the host? What libraries
do you need?

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to