hello,
Why it is not possible to start and stop the JVM several times:
for example :
executing a one python file:
jvm.start()
// code
jvm.stop()
//code
jvm.start()
// code
jvm.stop()
when trying, I got this error: RuntimeError: Failed to start Java VM.
Maybe I can add some options in jvm.start() function to make it possible?
Thanks for helping