I failed to lauch paraview, it showed this window for about 3 seconds and then gone. The version is 5.13.1, and i encountered the same problems in the previous version. Appreciate for the help.
Best,
mwestphal
(Mathieu Westphal (Kitware))
November 22, 2024, 8:41am
2
Please share your opengl information:
The OpenGL informations, visible in Help → About dialog, are not easily recoverable in pvpython yet.
Here is how to do it.
On ParaView 5.6 and earlier versions:
import vtk as VTK
openGLInfo=VTK.vtkPVOpenGLInformation()
session=servermanager.vtkSMProxyManager.GetProxyManager().GetActiveSession()
session.GatherInformation(session.CLIENT, openGLInfo, 0)
openGLInfo.GetVendor()
openGLInfo.GetVersion()
openGLInfo.GetRenderer()
openGLInfo.GetCapabilities()
On ParaView 5.7.X :
openGLInfo=serverman…
Paraview cannot be launched, so Help is inaccessible. I got OpenlGL version through OpenGL Extensions Viewer, as is 1.1.
Finally, I repaired it, cause the OpenGL version being too low. I updated it to 4.2 and Paraview can be launched. Much appreciation!