Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #85152
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Subject | Re: __pycache__ |
| Date | 2015-02-03 09:21 -0500 |
| Organization | IISS Elusive Unicorn |
| References | <CAG+_XL-8cdKtRHGcgwT8wfP2j5bZBj3niskq-iCaGyzvH5wm2A@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.18428.1422973275.18130.python-list@python.org> (permalink) |
On Mon, 2 Feb 2015 23:26:32 +0000, Luke Lloyd <nieko444@gmail.com>
declaimed the following:
>I am in school and there is a problem with my code:
>
>
>
>When I try to run my code in the python code in the python shell it waits
>about 10 seconds then shows an error that says “IDLE’s subprocess didn’t
>make connection. Either IDLE can’t start a subprocess or personal firewall
>software is blocking the connection.” Then when I press OK it just closes.
>
My first response is: Don't use IDLE, then...
Save your file, open a command line window, CD to where ever you saved
the program, and type "python your-program.py"
That avoids all the problems with IDLE trying to set up communication
channels for standard I/O routing.
The second is to use Google...
https://www.google.com/?gws_rd=ssl#q=python+idle+can%27t+make+connection
but the first page of results isn't helping -- lots of reports of the
problem, but no firm remedy listed.
If you are on a school machine, it is quite likely that a firewall
could be affecting you.
I don't use IDLE myself, so can't suggest anything deeper -- but a
command line should always word for running.
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: __pycache__ Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-02-03 09:21 -0500
csiph-web