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


Groups > comp.lang.python > #95051

Re: Installation Successful, but pythonw and idle doesn't function

From Terry Reedy <tjreedy@udel.edu>
Subject Re: Installation Successful, but pythonw and idle doesn't function
Date 2015-08-05 21:07 -0400
References <201508051612.t75GCc5m017047@rs103.luxsci.com>
Newsgroups comp.lang.python
Message-ID <mailman.1256.1438823406.3674.python-list@python.org> (permalink)

Show all headers | View raw


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 comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Installation Successful, but pythonw and idle doesn't function Terry Reedy <tjreedy@udel.edu> - 2015-08-05 21:07 -0400

csiph-web