vote up 1 vote down star
1

I'm wondering if anyone ran into this problem. Whenever I run any jython program in Eclipse, I got the following error in the beginning of the output:

" Failed to get environment, environ will be empty: (0, 'Failed to execute command ([\'sh\', \'-c\', \'env\']): java.io.IOException: Cannot run program "sh": Crea teProcess error=2, The system cannot find the file specified')

First, my environment is:

Windows 2008

JDK 1.6.0u10

jython 2.2.1

I did some digging, and I realized that this message is produced in the function javaos.getenv(). Whenever I call the javaos.getenv() function, it throws the following error:

C:\jython2.2.1>java -jar jython.jar

import javaos

print javaos.getenv("user.name")

Failed to get environment, environ will be empty: (0, 'Failed to execute command ([\'sh\', \'-c\', \'env\']): java.io.IOException: Cannot run program "sh": Crea teProcess error=2, The system cannot find the file specified')

This is strange, because I'm currently using a Windows machine, not an Unix. Any solutions/ideas?

Thank you in advance.

flag

2 Answers

vote up 0 vote down check

Try to uncomment and change the os setting in the 'registry' file

(it is in the same directory as your jython.jar / i hope)

# python.os determines operating-specific features, similar to and overriding the
# Java property "os.name".
# Some generic values are also supported: 'nt', 'ce' and 'posix'.
# Uncomment the following line for the most generic OS behavior available.
#python.os=None
python.os=nt
# try nt or dos
link|flag
Thank you. I never knew that you can have a registry file along with the jar file! I was just using the lone jython.jar file until now. – jeeyoungk Oct 29 '08 at 23:17
vote up 0 vote down

Interesting. Well, I seem to have found the relevant code here: http://www.koders.com/python/fid4B7C33153C1427D2CE19CE361EA9519D1652F802.aspx?s=self

If you look towards the bottom, it seems when setting the environment command jython thinks your os is posix. You say you're using "Windows 2008". I'm not sure what that is. Do you mean Windows Server 2008? If so, it's quite new and if you look at the _getOsType function in the same module, it looks like it might be too new for that module. You may need to upgrade to the most recent version of jython or Eclipse. But it's quite possible they haven't yet released a version that supports this OS. If that's the case, you may need to just report the bug to them.

link|flag
Thanks. I filed the bug related to this issue at bugs.jython.org/issue1162 . Thank you for your support. – jeeyoungk Oct 29 '08 at 23:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.