|
From: Frederic L. <f.l...@al...> - 2001-01-25 13:55:21
|
Pradeep Panda wrote:
>
> I am trying to install Jython-2.0, but it is showning this error
>
> Exception in thread "main"
> java.lang.NoClassDefFoundError: /tmp/jython-20
>
> I am trying to install on HP-UX11.0 OS ) and java1.2
> What shall I do
Make sure that the path where your Jython-20.class is stored is in
the classpath. You must set the CLASSPATH environment variable or
use the -cp option when running the java program
if the Jython-20.class is in the /tmp directory
setenv CLASSPATH ${CLASSPATH}:/tmp (syntax with the tcsh shell)
java Jython-20
or
java -cp ${CLASSPATH}:/tmp Jython-20
And in all cases, take a look at
http://www.jython.org/install.html
Regards
Fred
--
Frédéric Laurent
http://flrt.free.fr
|