Hi Werner,
The setup.py I have in the root of my GUI2Exe_0.5 directory is the one
that was created when I installed GUI2Exe.
I tried using GUI2Exe utilising the setup.py you suggested, but the
error I get is the same as in the original message.
Bye,
Ron.
···
On Mar 8, 11:22 am, werner <wbru...@free.fr> wrote:
Hi Ron,
On 08/03/2010 09:06, Barak, Ron wrote:> Hi Andrea,
> I installed GUI2Exe_0.5 and py2exe on a new Windows XP desktop machine,
> ...
What is your setup.py for the script below?
IIRC the error I get due to the new manifest MS dll sxs issue with Py2.6
is a bit different, but are you including all the sxs stuff in your
setup.py or your installer?
On Mar 8, 11:22 am, werner<wbru...@free.fr> wrote:
Hi Ron,
On 08/03/2010 09:06, Barak, Ron wrote:> Hi Andrea,
I installed GUI2Exe_0.5 and py2exe on a new Windows XP desktop machine,
...
What is your setup.py for the script below?
IIRC the error I get due to the new manifest MS dll sxs issue with Py2.6
is a bit different, but are you including all the sxs stuff in your
setup.py or your installer?
Hi Werner,
The setup.py I have in the root of my GUI2Exe_0.5 directory is the one
that was created when I installed GUI2Exe.
I tried using GUI2Exe utilising the setup.py you suggested, but the
error I get is the same as in the original message.
Can you create a small sample application (MakingSampleApps - wxPyWiki) which shows the problem? If yes, post it somewhere and I will try and see if I can help - maybe there are others which will look at it too.
Can you create a small sample application
(MakingSampleApps - wxPyWiki) which shows the problem? If
yes, post it somewhere and I will try and see if I can help - maybe
there are others which will look at it too.
Werner- Hide quoted text -
- Show quoted text -
Hi Werner,
The application is inside the first message of this thread.
Bye,
Ron.
He was asking for your setup.py that you use to run py2exe.
···
On 3/11/10 8:51 AM, Ron Barak wrote:
Can you create a small sample application
(MakingSampleApps - wxPyWiki) which shows the problem? If
yes, post it somewhere and I will try and see if I can help - maybe
there are others which will look at it too.
Werner- Hide quoted text -
- Show quoted text -
Hi Werner,
The application is inside the first message of this thread.
Attached setup.py works for me with the application shown in the first message of this thread.
I built using Py2.6.4 and wxPython 2.8.10.1 on Windows 7. I can run the exe from the dist folder on my Win 7 machine, I can also run it on my Win XP machine from a drive mapped to my Win 7 machine.
Are you clearing the dist and build folders, i.e. you don't have some old stuff in there?
Can you create a small sample application
(MakingSampleApps - wxPyWiki) which shows the problem? If
yes, post it somewhere and I will try and see if I can help - maybe
there are others which will look at it too.
Werner- Hide quoted text -
- Show quoted text -
Hi Werner,
The application is inside the first message of this thread.
Thank you for the sample setup.py. I've been trying to build a sample
app but also create one as a portable app according to the PortableApp.com format.
So far your script has helped me compile the program so it runs, but
then raises errors because it cannot find all the required files.
Has anyone on this list tried to make a wxPython app Portable?
Thank you for the sample setup.py. I've been trying to build a sample
app but also create one as a portable app according to the
PortableApp.com format.
Had a quick look at that site (with the "s" http://portableapps.com/) but can't find an overview on how this is supposed to work. Searching for Python on their site gives a few links.
E.g. Python Portable 2.5.2 Development Test 1 | PortableApps.com which seems to indicate that they only have the command line working. Some talk about SPE in that thread, if they got that working that should help you going as I am pretty sure that SPE is wxPython based.
As far as I can tell, any wxPython app which is frozen with py2exe is portable, in the sense that it requires no installation except to be present in a directory somewhere, as long as all the necessary dlls are included in the application directory. I have deployed several py2exe’d wxPython apps on CDs simply by putting all the files in the root directory and including an appropriate autorun.inf file to automatically run the exe when the CD is inserted in the drive. They all worked just fine with no extra magic.
Has anyone on this list tried to make a wxPython app Portable?
Task Coach (GPL) is available as PortableApp. It is built
automatically as part of our build process.
Here are the sources:
(prefix this to the files mentioned below)
Makefile contains targets for building different distributions.
Makefile invokes the make.py script for most building stuff. In turn
make.py uses distutils commands for building distributions. For some
distribution we have developed our own distutils commands. These
commands are located in buildlib, e.g. buildlib/bdist_portableapps.py.
Files used by these build commands are located in build.in. E.g.
build.in/portableapps/*.
HTH, Frank
···
2010/3/14 Josh English <joshua.r.english@gmail.com>:
While visiting your site, I noticed that TaskCoach is also available as
an iPhone/iPad app.
Is your iPhone/iPad version of TaskCoach also based on Python?
No, it is written in Objective-C by my fellow Task Coach developer
Jérôme Laheurte. Apple doesn't allow interpreted languages on the
iPhone as far as I know.
While visiting your site, I noticed that TaskCoach is also available as
an iPhone/iPad app.
Is your iPhone/iPad version of TaskCoach also based on Python?
No, it is written in Objective-C by my fellow Task Coach developer
Jérôme Laheurte. Apple doesn't allow interpreted languages on the
iPhone as far as I know.
Actually, there is an app using python + pygame that got into the app store by using a Python -> C(++) compiler. See here:
Thank you for the hint. I downloaded the source, because I saw in the
forums TC was built on wx, but the code was so, well, large, I
couldn't even begin to search for the right area.
Josh
···
On Sun, Mar 14, 2010 at 1:24 PM, Frank Niessink <frank@niessink.com> wrote:
Hi Josh,
Makefile contains targets for building different distributions.
Makefile invokes the make.py script for most building stuff. In turn
make.py uses distutils commands for building distributions. For some
distribution we have developed our own distutils commands. These
commands are located in buildlib, e.g. buildlib/bdist_portableapps.py.
Files used by these build commands are located in build.in. E.g.
build.in/portableapps/*.
That's all PortablePython, which I do have but I don't use as much as
I should. In fact, I could run all my scripts as scripts with PP and
save myself this headache, but I wanted to challenge myself with this
task.
So far, the task is winning.
···
On Sun, Mar 14, 2010 at 3:28 AM, werner <wbruhin@free.fr> wrote:
Hi Josh,
On 14/03/2010 04:32, Josh English wrote:
Werner,
Thank you for the sample setup.py. I've been trying to build a sample
app but also create one as a portable app according to the
PortableApp.com format.
Had a quick look at that site (with the "s" http://portableapps.com/)
but can't find an overview on how this is supposed to work. Searching for
Python on their site gives a few links.
E.g. Python Portable 2.5.2 Development Test 1 | PortableApps.com which seems to indicate that they
only have the command line working. Some talk about SPE in that thread, if
they got that working that should help you going as I am pretty sure that
SPE is wxPython based.
Thank you for the hint. I downloaded the source, because I saw in the
forums TC was built on wx, but the code was so, well, large, I
couldn't even begin to search for the right area.
Oh, what might be it is that not all build files are included in the
source distribution. The source distribution is meant for people to
run Task Coach from source, not to build other distributions. You
should really check out the sources from Subversion:
I'll give it a try. I'm on dialup, so SVN doesn't always work out. too
many timeouts. I'm upgrading to DSL soon, though.
···
On Mon, Mar 15, 2010 at 2:23 PM, Frank Niessink <frank@niessink.com> wrote:
Hi Josh,
2010/3/15 Josh English <joshua.r.english@gmail.com>:
Frank,
Thank you for the hint. I downloaded the source, because I saw in the
forums TC was built on wx, but the code was so, well, large, I
couldn't even begin to search for the right area.
Oh, what might be it is that not all build files are included in the
source distribution. The source distribution is meant for people to
run Task Coach from source, not to build other distributions. You
should really check out the sources from Subversion: