Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #96046
| References | (7 earlier) <CAFSbXtP6oRvPt5ogEnemi1AB6dz5dOMTHf+oue=P7LsAVf1hDg@mail.gmail.com> <55EA38D9.6000303@medimorphosis.com.au> <55EA3D92.5090702@mrabarnett.plus.com> <mailman.156.1441419601.8327.python-list@python.org> <6c8eba79-682e-4f78-a867-0da285ba754b@googlegroups.com> |
|---|---|
| From | eryksun <eryksun@gmail.com> |
| Date | 2015-09-05 01:30 -0500 |
| Subject | Re: Need Help w. PIP! |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.162.1441434672.8327.python-list@python.org> (permalink) |
On Fri, Sep 4, 2015 at 10:07 PM, Steve Burrus <steveburrus28@gmail.com> wrote: > well everyone there must be sometjhing about upgrading Python up to version 3.5 rc > because everything works just fine now, beyond my wildest dreams! I am even able > now to type in "pip" and get the usual info. on it and I have connected to the Django > server and configured the admin so thanx for eveyone who tried to help me. I just tested running pip.exe on a VM with Windows 10, build 10074. It surprised me that it worked, so I checked the source code of Vinay's [simple launcher][1]. Apparently the simpler launcher merely asserts that creating the job object succeeds, so it will only fail in a debug build. (See run_child in launcher.c). Depending on the nature of the script it could be confusing if there's no job object and the launcher gets killed. This leaves python.exe and the shell competing for console input. That said, it shouldn't really matter for a simple program such as pip. But the full py.exe launcher used by Python always fails if creating the job object doesn't succeed. (Oddly, it doesn't fail if *assigning* the child to the job fails; I guess because Windows 7 lacks support for job hierarchies, but still, it makes no sense to care about creating something that you don't care about using.) So for build 10074 of Windows 10, ensure the filetypes for .py and .pyw scripts (installed as Python.File and Python.NoConFile) run python.exe and pythonw.exe instead of py.exe and pyw.exe. Otherwise you won't be able to run scripts directly at the command prompt or by double clicking them in Explorer. [1]: https://bitbucket.org/vinay.sajip/simple_launcher/src
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-03 15:20 -0700
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 01:05 +0100
Re: Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-03 18:04 -0700
Re: Need Help w. PIP! MRAB <python@mrabarnett.plus.com> - 2015-09-04 02:44 +0100
Re: Need Help w. PIP! Chris Angelico <rosuav@gmail.com> - 2015-09-04 11:55 +1000
Re: Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-03 20:07 -0700
Re: Need Help w. PIP! Chris Angelico <rosuav@gmail.com> - 2015-09-04 13:16 +1000
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 04:04 +0100
Re: Need Help w. PIP! Chris Angelico <rosuav@gmail.com> - 2015-09-04 13:08 +1000
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 04:11 +0100
Re: Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-04 09:35 -0700
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 21:55 +0100
Re: Need Help w. PIP! eryksun <eryksun@gmail.com> - 2015-09-04 17:48 -0500
Re: Need Help w. PIP! eryksun <eryksun@gmail.com> - 2015-09-04 16:50 -0500
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 04:27 +0100
Re: Need Help w. PIP! Chris Angelico <rosuav@gmail.com> - 2015-09-04 13:32 +1000
Re: Need Help w. PIP! wxjmfauth@gmail.com - 2015-09-04 01:13 -0700
Re: Need Help w. PIP! Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-09-04 09:14 -0400
Re: Need Help w. PIP! Chris Warrick <kwpolska@gmail.com> - 2015-09-04 16:30 +0200
Re: Need Help w. PIP! "ast" <nomail@invalid.com> - 2015-09-04 08:16 +0200
Re: Need Help w. PIP! "ast" <nomail@invalid.com> - 2015-09-04 08:24 +0200
Re: Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-04 09:04 -0700
Re: Need Help w. PIP! Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-09-04 21:46 +0100
Re: Need Help w. PIP! MRAB <python@mrabarnett.plus.com> - 2015-09-05 01:55 +0100
Re: Need Help w. PIP! Rob Hills <rhills@medimorphosis.com.au> - 2015-09-05 10:19 +0800
Re: Need Help w. PIP! Steve Burrus <steveburrus28@gmail.com> - 2015-09-04 20:07 -0700
Re: Need Help w. PIP! eryksun <eryksun@gmail.com> - 2015-09-05 01:30 -0500
Re: Need Help w. PIP! Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-09-05 10:14 +0200
Re: Need Help w. PIP! Terry Reedy <tjreedy@udel.edu> - 2015-09-09 01:53 -0400
Reply to author, reply to list, reply to all (was: Need Help w. PIP!) Ben Finney <ben+python@benfinney.id.au> - 2015-09-09 16:09 +1000
Re: Reply to author, reply to list, reply to all Ben Finney <ben+python@benfinney.id.au> - 2015-09-09 17:20 +1000
Re: Reply to author, reply to list, reply to all (was: Need Help w. PIP!) Chris Angelico <rosuav@gmail.com> - 2015-09-09 17:24 +1000
Re: Reply to author, reply to list, reply to all Ben Finney <ben+python@benfinney.id.au> - 2015-09-09 17:38 +1000
Re: Reply to author, reply to list, reply to all Terry Reedy <tjreedy@udel.edu> - 2015-09-09 04:16 -0400
csiph-web