Re: freeze.py

2014-04-30 Thread Ethan Furman
On 04/30/2014 07:42 PM, Ben Finney wrote: Ethan Furman writes: I'm running ubuntu 13.04, I have installed python2.7-dev and python2.7-example, but when I try to run freeze.py I get: Error: needed directory /usr/lib/python2.7/config not found Where is ‘freeze.py’? Is there documentation p

Re: freeze.py

2014-04-30 Thread Ben Finney
Ethan Furman writes: > I'm running ubuntu 13.04, I have installed python2.7-dev and > python2.7-example, but when I try to run freeze.py I get: > > Error: needed directory /usr/lib/python2.7/config not found Where is ‘freeze.py’? Is there documentation provided for the installation of that too

Re: freeze.py builds, but binary doesn't even run locally (shared GTK problem?)

2006-04-08 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: > from _gtk import * > > ImportError: No module named _gtk If you look at the freeze output, you'll notice that _gtk is not linked into your application: It is a shared library (.so), so it can't be frozen. Instead, the resulting binary will look for _gtk.so on sys.p

Re: freeze.py and GTK apps

2006-03-28 Thread Kristian Hermansen
On 3/28/06, Adam DePrince <[EMAIL PROTECTED]> wrote: > When your Python installation uses shared library modules such as > _tkinter.pyd, these will not be incorporated in the frozen program. > Again, the frozen program will work when you test it, but it won't > work when you ship it to a site wit

Re: freeze.py and GTK apps

2006-03-28 Thread Adam DePrince
On Mon, 2006-03-27 at 16:15 -0800, [EMAIL PROTECTED] wrote: > After freezing a PYGTK app, I am unable to run it. It this a common > problem, because I could not find any documentation on it at all. > > I tried freezing this example, which gets by the make as well, but > running it results in a fa