I am trying to use java sutime in my Python code. The code has been working fine until yesterday but now ends with Segmentation fault. The problem seems to be coming from
jpype.startJVM(getDefaultJVMPath())
This function ends with Segmentation fault. The defaultJVMPath is
'/usr/lib/jvm/java-8-oracle/jre/lib/amd64/server/libjvm.so'
I have tried uninstalling and then installing java and jpype. The code works fine in virtual box with less memory, so the problem doesnt seems to be coming from lack of memory. Anyone has any ideas? Any help is appreciated., thanks!
>>> import jpype
>>> jpype.isJVMStarted()
0
>>> jpype.startJVM(jpype.getDefaultJVMPath())
Segmentation fault
deepthi@deepthi:~$