# ModuleNotFoundError in ParaviewLite

**URL:** https://discourse.paraview.org/t/modulenotfounderror-in-paraviewlite/4069
**Category:** Web Support
**Created:** [April 15, 2020, 1:38am UTC](https://discourse.paraview.org/t/modulenotfounderror-in-paraviewlite/4069 "2020-04-15T01:38:07Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![shiftww](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/s/e68b1a/32.png) [@shiftww](https://discourse.paraview.org/u/shiftww)
#### Post date: [April 15, 2020, 1:38am UTC](https://discourse.paraview.org/t/modulenotfounderror-in-paraviewlite/4069/1 "2020-04-15T01:38:07Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![jfavre](https://discourse.paraview.org/letter_avatar_proxy/v4/letter/j/b5ac83/32.png) [@jfavre](https://discourse.paraview.org/u/jfavre)
#### Post date: [April 15, 2020, 6:19am UTC](https://discourse.paraview.org/t/modulenotfounderror-in-paraviewlite/4069/2 "2020-04-15T06:19:53Z")

</div>

> [@shiftww](#):
>
> from paraview.modules.vtkPVClientServerCoreRendering import vtkPVRenderView

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

```
from paraview.modules.vtkRemotingViews import vtkPVRenderView

```
