Could it have something to do with your PATH or CLASSPATH settings?
Here's a test script that works for me:
#!/usr/bin/env jython
from java import lang
from javax import swing
print "lang attributes: "
for attr in dir(lang):
print "\t%s" % attr
print
print "swing attributes: "
for attr i
hello, can I ask a jython question here?
when I use the jython interpreter I have no problem with the statement:
from java import lang
from javax import swing
but when I put this in a script, I get a package not found error.
what am I doing wrong?
the script header is #!/bin/env jython
--
Nan