Message10514

Author memoselyk
Recipients alex.gronholm, darjus, memoselyk, seletz, thavihaz909, zyasoft
Date 2015-12-02.16:29:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449073744.78.0.00308978466123.issue2360@psf.upfronthosting.co.za>
In-reply-to
Content
I have experienced this issue, these are my 2 cents:

IMHO, the error is triggered by two conditions:
 1. sys.platform returns "javaM.m.p_u". (that's the same than jython 2.5.2, so it might be ok)
 2. Something (probably `import pip`) when pip.exe is run creates a %TEMP%\pip_build_<username> folder, that raises an `OSError` in the `os.mkdir` because that temporary directory already exists.

To be able to solve this problem, we need to answer 2 questions:
 1. This is an issue with pip "1.6dev", are we still using that version? Message 10397, indicates that we are using a newer pip.
 2. If so, will this issue be fixed by preventing the temp folder for being created if pip is already installed, or by fixing the path the code takes take the True branch of the `if sys.platform == 'win32':` conditional.
History
Date User Action Args
2015-12-02 16:29:04memoselyksetmessageid: <1449073744.78.0.00308978466123.issue2360@psf.upfronthosting.co.za>
2015-12-02 16:29:04memoselyksetrecipients: + memoselyk, zyasoft, alex.gronholm, darjus, seletz, thavihaz909
2015-12-02 16:29:04memoselyklinkissue2360 messages
2015-12-02 16:29:03memoselykcreate