Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #95051 > unrolled thread
| Started by | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| First post | 2015-08-05 21:07 -0400 |
| Last post | 2015-08-05 21:07 -0400 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: Installation Successful, but pythonw and idle doesn't function Terry Reedy <tjreedy@udel.edu> - 2015-08-05 21:07 -0400
| From | Terry Reedy <tjreedy@udel.edu> |
|---|---|
| Date | 2015-08-05 21:07 -0400 |
| Subject | Re: Installation Successful, but pythonw and idle doesn't function |
| Message-ID | <mailman.1256.1438823406.3674.python-list@python.org> |
On 8/5/2015 12:12 PM, Rick Smith wrote:
>
> I was able to install various versions of Python (3.5.0b4 32bit being
> the most recent) multiple times (uninstalling in between) and they
> worked ("python --version" at the command line worked).
>
> However pythonw.exe did not and does not work. I was simply returned to
> the command prompt, without ANY interaction or error.
C:\Programs\Python35>pythonw
C:\Programs\Python35>
Normal behavior.
Try
> python -m idlelib
or, if that does not start 3.5,
> py -3.5 -m idlelib
and you should either see Idle or an error message
If Idle is starting but not connecting, as you seems to say, there there
is a problems with your network socket configuration or another program.
Adding -n at the end of the command line will will bypass that, though
you could have other problems in certain situations.
Please see my Who uses IDLE? thread.
--
Terry Jan Reedy
Back to top | Article view | comp.lang.python
csiph-web