Message10608

Author zyasoft
Recipients alex.gronholm, darjus, memoselyk, seletz, thavihaz909, zyasoft
Date 2016-01-08.03:25:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452223552.71.0.98806911914.issue2360@psf.upfronthosting.co.za>
In-reply-to
Content
Tried it on Windows 8 just now. The problem is that it installs bin\pip, not bin\pip.exe (like in 2.7.0) and it is a script instead of a self-executing archive that then links against jython.exe. I'm pretty sure this is one of those one-line fixes to make it happen.

So here's the content of bin\pip

#!c:\jython2.7.1b3\bin\jython.exe

# -*- coding: utf-8 -*-
import re
import sys

from pip import main

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(main())

Too bad windows doesn't support shebang scripts!
History
Date User Action Args
2016-01-08 03:25:52zyasoftsetmessageid: <1452223552.71.0.98806911914.issue2360@psf.upfronthosting.co.za>
2016-01-08 03:25:52zyasoftsetrecipients: + zyasoft, alex.gronholm, darjus, seletz, thavihaz909, memoselyk
2016-01-08 03:25:52zyasoftlinkissue2360 messages
2016-01-08 03:25:51zyasoftcreate