Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77130 > unrolled thread

running a python program

Started byngangsia akumbo <ngangsia@gmail.com>
First post2014-08-27 06:42 -0700
Last post2014-08-28 09:14 -0400
Articles 13 — 6 participants

Back to article view | Back to comp.lang.python


Contents

  running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-27 06:42 -0700
    Re: running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-27 06:46 -0700
      Re: running a python program Chris Angelico <rosuav@gmail.com> - 2014-08-28 00:08 +1000
    Re: running a python program William Ray Wing <wrw@mac.com> - 2014-08-27 10:05 -0400
    Re: running a python program Grant Edwards <invalid@invalid.invalid> - 2014-08-27 15:39 +0000
      Re: running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-28 02:10 -0700
        Re: running a python program Chris Angelico <rosuav@gmail.com> - 2014-08-28 19:18 +1000
          Re: running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-28 02:31 -0700
            Re: running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-28 05:41 -0700
            Re: running a python program Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-08-28 15:51 +0100
              Re: running a python program ngangsia akumbo <ngangsia@gmail.com> - 2014-08-28 08:53 -0700
                Re: running a python program Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-08-28 16:59 +0100
        Re: running a python program Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-08-28 09:14 -0400

#77130 — running a python program

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-27 06:42 -0700
Subjectrunning a python program
Message-ID<dd26d760-a35d-4f76-8b05-5325c84b5e9c@googlegroups.com>
i have written a small scripts in python that inputs two values and prints out the sum.

Ok i want to be able to install this program on a windows 8 machine and run it as a normal program.

i want to be able to run it to any windows machine without necessarily installing python on that machine.

[toc] | [next] | [standalone]


#77131

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-27 06:46 -0700
Message-ID<a2548676-0124-4e1a-8395-42c45a562734@googlegroups.com>
In reply to#77130
please i need some help

[toc] | [prev] | [next] | [standalone]


#77134

FromChris Angelico <rosuav@gmail.com>
Date2014-08-28 00:08 +1000
Message-ID<mailman.13508.1409148536.18130.python-list@python.org>
In reply to#77131
On Wed, Aug 27, 2014 at 11:46 PM, ngangsia akumbo <ngangsia@gmail.com> wrote:
> please i need some help

You could try a search engine. Type what you want into it, and start
reading the results. In the three minutes between your first post and
your context-free and content-free nudge, you probably could have
found what you want, as you're hardly the first person to want this.

ChrisA

[toc] | [prev] | [next] | [standalone]


#77133

FromWilliam Ray Wing <wrw@mac.com>
Date2014-08-27 10:05 -0400
Message-ID<mailman.13507.1409148334.18130.python-list@python.org>
In reply to#77130
On Aug 27, 2014, at 9:42 AM, ngangsia akumbo <ngangsia@gmail.com> wrote:

> i have written a small scripts in python that inputs two values and prints out the sum.
> 
> Ok i want to be able to install this program on a windows 8 machine and run it as a normal program.
> 
> i want to be able to run it to any windows machine without necessarily installing python on that machine.
> 
> -- 
> https://mail.python.org/mailman/listinfo/python-list

You might try Googling Python to exe.

-Bill

[toc] | [prev] | [next] | [standalone]


#77140

FromGrant Edwards <invalid@invalid.invalid>
Date2014-08-27 15:39 +0000
Message-ID<ltku3g$cfc$1@reader1.panix.com>
In reply to#77130
On 2014-08-27, ngangsia akumbo <ngangsia@gmail.com> wrote:

> i have written a small scripts in python that inputs two values and
> prints out the sum.
>
> Ok i want to be able to install this program on a windows 8 machine
> and run it as a normal program.

I use py2exe for that. When I want to bundle it up with an installer,
I use Inno Setup.

http://www.py2exe.org/
http://www.jrsoftware.org/isinfo.php

It will sometimes requires some fiddling around, experimentation,
burning of incense, and sacrificing of chickens [but no more than most
things on Windows.]

But they've always worked well for me.

-- 
Grant Edwards               grant.b.edwards        Yow! Hey, waiter!  I want
                                  at               a NEW SHIRT and a PONY TAIL
                              gmail.com            with lemon sauce!

[toc] | [prev] | [next] | [standalone]


#77193

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-28 02:10 -0700
Message-ID<0f342ae8-05c7-4ae0-8002-bd0122a3a38e@googlegroups.com>
In reply to#77140
when i run python setup.py py2exe i get this error

no module name py2exe any help please


On Wednesday, August 27, 2014 8:39:28 AM UTC-7, Grant Edwards wrote:
> On 2014-08-27, ngangsia akumbo <ngangsia@gmail.com> wrote:
> 
> 
> 
> > i have written a small scripts in python that inputs two values and
> 
> > prints out the sum.
> 
> >
> 
> > Ok i want to be able to install this program on a windows 8 machine
> 
> > and run it as a normal program.
> 
> 
> 
> I use py2exe for that. When I want to bundle it up with an installer,
> 
> I use Inno Setup.
> 
> 
> 
> http://www.py2exe.org/
> 
> http://www.jrsoftware.org/isinfo.php
> 
> 
> 
> It will sometimes requires some fiddling around, experimentation,
> 
> burning of incense, and sacrificing of chickens [but no more than most
> 
> things on Windows.]
> 
> 
> 
> But they've always worked well for me.
> 
> 
> 
> -- 
> 
> Grant Edwards               grant.b.edwards        Yow! Hey, waiter!  I want
> 
>                                   at               a NEW SHIRT and a PONY TAIL
> 
>                               gmail.com            with lemon sauce!

[toc] | [prev] | [next] | [standalone]


#77195

FromChris Angelico <rosuav@gmail.com>
Date2014-08-28 19:18 +1000
Message-ID<mailman.13549.1409217506.18130.python-list@python.org>
In reply to#77193
On Thu, Aug 28, 2014 at 7:10 PM, ngangsia akumbo <ngangsia@gmail.com> wrote:
> when i run python setup.py py2exe i get this error
>
> no module name py2exe any help please

Any help? Sure. I'll offer three suggestions.

1) Don't top-post.
2) Don't use Google Groups, or edit your posts before sending.
3) Use a web search to find basic information about installing py2exe,
same as I advised you before.

ChrisA

[toc] | [prev] | [next] | [standalone]


#77196

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-28 02:31 -0700
Message-ID<44fc45a1-552b-4da5-b1e6-52185850432c@googlegroups.com>
In reply to#77195
i have done so before posting here

[toc] | [prev] | [next] | [standalone]


#77203

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-28 05:41 -0700
Message-ID<c60f7038-64d0-4bb0-a80f-6fbd52968cc1@googlegroups.com>
In reply to#77196
thanks

[toc] | [prev] | [next] | [standalone]


#77214

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2014-08-28 15:51 +0100
Message-ID<mailman.13565.1409237707.18130.python-list@python.org>
In reply to#77196
On 28/08/2014 10:31, ngangsia akumbo wrote:
> i have done so before posting here
>

Done what, fed the cat?

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#77218

Fromngangsia akumbo <ngangsia@gmail.com>
Date2014-08-28 08:53 -0700
Message-ID<c2e72a84-6655-43d5-95e7-a7450b454769@googlegroups.com>
In reply to#77214
thanks i figured it out

[toc] | [prev] | [next] | [standalone]


#77219

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2014-08-28 16:59 +0100
Message-ID<mailman.13569.1409241580.18130.python-list@python.org>
In reply to#77218
On 28/08/2014 16:53, ngangsia akumbo wrote:
> thanks i figured it out
>

So what did you feed the cat in the end?  Or are we on a new topic?  Or 
what?

-- 
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.

Mark Lawrence

[toc] | [prev] | [next] | [standalone]


#77205

FromDennis Lee Bieber <wlfraed@ix.netcom.com>
Date2014-08-28 09:14 -0400
Message-ID<mailman.13556.1409231681.18130.python-list@python.org>
In reply to#77193
On Thu, 28 Aug 2014 02:10:56 -0700 (PDT), ngangsia akumbo
<ngangsia@gmail.com> declaimed the following:

>when i run python setup.py py2exe i get this error
>
>no module name py2exe any help please
>

	Did you download the package?

	Did you unzip the download?

	Are you in the directory of the package?

{It's been a while since I've had to use a setup.py installer}
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web