Issue2496

classification
Title: jython 2.7.0 homebrew on OSX fails
Type: crash Severity: normal
Components: Installer Versions: Jython 2.7
Milestone:
process
Status: closed Resolution: invalid
Dependencies: Superseder:
Assigned To: Nosy List: nbertram, zyasoft
Priority: Keywords:

Created on 2016-05-01.14:52:58 by nbertram, last changed 2016-08-24.20:28:59 by zyasoft.

Messages
msg10851 (view) Author: Niels (nbertram) Date: 2016-05-01.14:52:57
I installed jython via homebrew and also manually using the installer but when using it on OSX 10.11.4, I get below error. 

$ brew install jython

$ jython --version
Traceback (most recent call last):
  File "/usr/local/bin/jython", line 444, in <module>
    main(sys.argv)
  File "/usr/local/bin/jython", line 431, in main
    os.execvp(command[0], command[1:])
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 346, in execvp
    _execvpe(file, args)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 370, in _execvpe
    func(file, *argrest)
OSError: [Errno 2] No such file or directory
msg10908 (view) Author: Jim Baker (zyasoft) Date: 2016-08-24.20:28:59
Jython cannot run CPython's standard library as is, which is being done here. Instead, use Jython's own version.
History
Date User Action Args
2016-08-24 20:28:59zyasoftsetstatus: open -> closed
resolution: invalid
messages: + msg10908
nosy: + zyasoft
2016-05-01 14:52:58nbertramcreate