<div dir="ltr">Hi Darya,<div><br></div><div>The concrete implementation for vtkPolyDataMapper is vtkOpenGLPolyDataMapper.  The NotImplementedError probably means that the vtkRenderingOpenGLPython.so module is not loading, because it is the module that contains vtkOpenGLPolyDataMapper.</div><div><br></div><div>I cannot be sure why this module is not loading on your system, but you can try loading it manually from python:</div><div><br></div><div>  >>> from vtkRenderingOpenGLPython import *<br></div><div>  >>> mapper = vtkOpenGLPolyDataMapper()</div><div>  >>> print mapper.GetClassName()</div><div>  >>></div><div>  >>> from vtkRenderingCore import *</div><div>  >>> mapper2 = vtkPolyDataMapper()</div><div>  >>> print mapper2.GetClassName()</div><div><br></div><div> - David</div><div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jul 30, 2015 at 3:58 AM, Darya Yelshyna <span dir="ltr"><<a href="mailto:darya.yelshyna@gmail.com" target="_blank">darya.yelshyna@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hello everyone,<div><br></div><div>I am sorry for inconvenience, but I can't execute the tutorial steps contained in the Examples folder. I pretend to use python for development of a 3D Slicer module. When I run the Cone.py, I get the following error:</div><div><br></div><div><div>Generic Warning: In /home/darya/Documents/Slicer-SuperBuild/VTKv6/Rendering/Core/vtkPolyDataMapper.cxx, line 28</div><div>Error: no override found for 'vtkPolyDataMapper'.</div><div><br></div><div>Traceback (most recent call last):</div><div>  File "/home/darya/Documents/LiClipse Workspace/VTKtutorials/src/Step1.py", line 14, in <module></div><div>    coneMapper = vtk.vtkPolyDataMapper()</div><div>NotImplementedError: no concrete implementation exists for this class</div><div>vtkDebugLeaks has detected LEAKS!</div><div>Class "vtkPolyDataMapper" has 1 instance still around.</div></div><div><br></div><div>I could not find a solution for this, the only information I found was concerning C++ programming.</div><div>Thank you in advance.<br></div><div><br></div><div>Sincerely,</div><div>Darya Yelshyna</div></div></blockquote></div><br></div></div></div>