<div dir="ltr"><span style="font-family:monospace,monospace">Hello,<br><br>I am testing ParaView-5.3.0-RC1-Qt5-OpenGL2-Windows-64bit.<br><br>I run into a problem when using PV with a script. When I launch a simple script with the command<br><br>D:\ParaView-5.3.0-RC1-Qt5-OpenGL2-Windows-64bit\bin\paraview.exe --script=testSphere.py<br><br>I have the following error message in the console, and nothing happens<br><br>Cannot open data file " \paraview.exe " (:0, )<br><br>Below is testSphere.py<br><br>from paraview.simple import *<br>paraview.simple._DisableFirstRenderCameraReset()<br>sphere1 = Sphere()<br>renderView1 = GetActiveViewOrCreate('RenderView')<br>sphere1Display = Show(sphere1, renderView1)<br>renderView1.ResetCamera()<br><br><br>My initial goal was to check that the following code works with PV5.3.<br>For version PV 5.2 it failed, whereas previously it succeeded<br><br>import os<br>import tempfile<br>import numpy as np<br>outputFilename = os.path.join(tempfile.mkdtemp(), 'dummy.npz')<br>varName='Time'<br>np.savez(outputFilename, **{varName:np.random.rand(3,4)})<br>d = np.load(outputFilename)<br>time = d[varName]<br>d.close()<br>os.remove(outputFilename)<br>print('Success PV can create a NPZ file and read its content : ' + outputFilename)<br><br>I had reported this bug,<br><br><a href="http://public.kitware.com/pipermail/paraview/2017-January/038890.html">http://public.kitware.com/pipermail/paraview/2017-January/038890.html</a><br><br>and a bug issue had been opened:<br><br><a href="https://gitlab.kitware.com/paraview/paraview-superbuild/issues/43">https://gitlab.kitware.com/paraview/paraview-superbuild/issues/43</a><br><br><br>Guillaume Jacquenot<br></span></div>