Re: How to write a Installer for a Python App in Linux

2006-08-11 Thread Chris Lambacher
If you mean that you are building Python2.4 and get an error during the
configure step, you need to install libc6-dev.

You are likely to find lots of issues unless you install some basic developer
tools.  There are some metapackages that get the right things for you, but I
can't remember what it is off hand.

-Chris
On Fri, Aug 11, 2006 at 12:21:57PM -0700, [EMAIL PROTECTED] wrote:
> Has anybody written a file for cx_freeze. I am running Ubuntu Linux and
> downloaded version for Python2.4. When I run it I get an error saying
> that I dont have GLIBC_2.4.
> 
> I couldnt find this in Synaptic too.
> 
> Any clues ?
> 
> -- 
> http://mail.python.org/mailman/listinfo/python-list
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write a Installer for a Python App in Linux

2006-08-11 Thread diffuser78
Has anybody written a file for cx_freeze. I am running Ubuntu Linux and
downloaded version for Python2.4. When I run it I get an error saying
that I dont have GLIBC_2.4.

I couldnt find this in Synaptic too.

Any clues ?

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write a Installer for a Python App in Linux

2006-08-11 Thread Grant Edwards
On 2006-08-11, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

>
> Every help is appreciated. Thanks.
>
>> You could freeze the Python program. That'll ensure all the required
>> files are packaged with your program, including Python itself. If you
>> build a RPM from that, your users will be quite happy.

> How can we freeze the python program and how will it ensure that all
> the python files are packages with the programs (including python and
> wxPython). Can anybody give me some pointers on this.

http://www.google.com/search?hl=en&lr=&q=freeze+python+program+linux

-- 
Grant Edwards   grante Yow!  Imagine--a WORLD
  at   without POODLES...
   visi.com
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write a Installer for a Python App in Linux

2006-08-11 Thread diffuser78
Hi,

How can we freeze the python program and how will it ensure that all
the python files are packages with the programs (including python and
wxPython). Can anybody give me some pointers on this.

Every help is appreciated. Thanks.

> You could freeze the Python program. That'll ensure all the required
> files are packaged with your program, including Python itself. If you
> build a RPM from that, your users will be quite happy.
 
> Sybren

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write a Installer for a Python App in Linux

2006-08-11 Thread diffuser78
I saw some examples and understood for most part how to write a
setpu.py.

Since I want to bundle python and wxPython along with my
application...how can I do that.

Any code gurus can throw some pointers.

Every help is appreciated.

Bruno Desthuilliers wrote:


> Look for distutil and EasyInstall (-> Python Eggs)

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: How to write a Installer for a Python App in Linux

2006-08-10 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit :
> Hi,
> 
> I have known python for about 3-4 months now. My knowledge is still
> very limited.
> 
> I wrote a small app using wxPython. Now, I want to create an installer
> for it (on Linux platform.) for the people I developed this small
> utility.
> 
> These people use some customized variant of Red Hat Linux. I found on
> the web python2.4 and the corresponding wxPython files.
> 
> How can I write a Installer file which will install all the needed
> programs in the correct path, so that my wxPython app is ready to run
> and end user doesn't need to bother installing required files.
> 
> Give me some pointers and I will try to write the script on my own.
> 
> Every help is greatly appreciated.
> 
Look for distutil and EasyInstall (-> Python Eggs)
-- 
http://mail.python.org/mailman/listinfo/python-list