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

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

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.

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

How to write a Installer for a Python App in Linux

2006-08-10 Thread diffuser78
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

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