Re: jpype package, could be path problem

2006-09-20 Thread Rob Wolfe
kelemen.viktor wrote: > Hi > > thanks for your suggestions > > ive modified the sample code You've modified it incorrect. > " > import jpype > from jpype import * You should use "import jpype" OR "from jpype import *" (not recommended) but NOT BOTH. > jpype.startJVM('/usr/lib/jvm/java-1.5.0-su

Re: jpype package, could be path problem

2006-09-20 Thread kelemen.viktor
Hi thanks for your suggestions ive modified the sample code " import jpype from jpype import * jpype.startJVM('/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386/client/libjvm.so','-ea') java.lang.System.out.println("hello world") shutdownJVM() " and its working. It seems to be quite strange. W

Re: jpype package, could be path problem

2006-09-20 Thread Rob Wolfe
kelemen.viktor wrote: > everything worked correctly but when i wrote a short script: > " > from jpype import * > > jpype.startJVM('/usr/lib/jvm/java-1.5.0-sun-1.5.0.06/jre/lib/i386/client/libjvm.so','-ea') > java.lang.System.out.println("hello world") > shutdownJVM() > " > and tried to run it thi