Message10783

Author zyasoft
Recipients pekka.klarck, zyasoft
Date 2016-02-24.18:58:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456340290.3.0.440832346239.issue2477@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows 8.1 and Java 7, both jython.exe -m pip and pip.exe work for me for installing robotframework:

c:\jython2.7.1b3>bin\jython.exe
Jython 2.7.1b3 (default:df42d5d6be04, Feb 3 2016, 03:22:46)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_55
Type "help", "copyright", "credits" or "license" for more information.
>>>
c:\jython2.7.1b3>bin\jython.exe -m pip install robotframework
Collecting robotframework
  Downloading robotframework-3.0.tar.gz (430kB)
←[K    100% |################################| 434kB 262kB/s ta 0:00:01
←[?25hInstalling collected packages: robotframework
  Running setup.py install for robotframework
Successfully installed robotframework-3.0
←[33mYou are using pip version 7.1.2, however version 8.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.←[0m

c:\jython2.7.1b3>bin\pip.exe install --force --upgrade robotframework
Collecting robotframework
  Using cached robotframework-3.0.tar.gz
Installing collected packages: robotframework
  Found existing installation: robotframework 3.0
    Uninstalling robotframework-3.0:
      Successfully uninstalled robotframework-3.0
  Running setup.py install for robotframework
Successfully installed robotframework-3.0
←[33mYou are using pip version 7.1.2, however version 8.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.←[0m

(At some point we should fix the pip tool so as to not try to color output on Windows when run with Jython, to avoid these control characters being output. Another os._name vs os.name issue I'm sure.)
History
Date User Action Args
2016-02-24 18:58:10zyasoftsetmessageid: <1456340290.3.0.440832346239.issue2477@psf.upfronthosting.co.za>
2016-02-24 18:58:10zyasoftsetrecipients: + zyasoft, pekka.klarck
2016-02-24 18:58:10zyasoftlinkissue2477 messages
2016-02-24 18:58:09zyasoftcreate