ModuleNotFoundError in ParaviewLite

Dear, Developers:
I have run the pvw-list.py of the paraview-5.8 for a simple test, but it returned the following error to me:
Traceback (most recent call last):
File “D:\ParaView-5.8.0-MPI\share\paraview-5.8\web\lite\server\lite_protocols.py”, line 13, in
from vtkmodules.vtkPVClientServerCoreRendering import vtkPVRenderView
ModuleNotFoundError: No module named ‘vtkmodules.vtkPVClientServerCoreRendering’

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File “share\paraview-5.8\web\lite\server\pvw-lite.py”, line 94, in
import lite_protocols as local_protocols
File “D:\ParaView-5.8.0-MPI\share\paraview-5.8\web\lite\server\lite_protocols.py”, line 16, in
from paraview.modules.vtkPVClientServerCoreRendering import vtkPVRenderView
ModuleNotFoundError: No module named ‘paraview.modules.vtkPVClientServerCoreRendering’

May I ask how to solve this problem of module missing , should the paraview is needed to re-build?

this is the consequence of a reorganization of modules in v5.8. The correct syntax should be:

from paraview.modules.vtkRemotingViews import vtkPVRenderView