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
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
[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
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
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