Files
geMoldInsight/venv/lib/python3.11/site-packages/vtkmodules/web/errors.py
T

13 lines
379 B
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
WEB_DEPENDENCY_MISSING_MESSAGE = """Please install VTK's Web module dependencies.
These include `wslink` and can be easily installed with vtk by using the
`web` extra requirements option. For example:
pip install vtk[web]
"""
class WebDependencyMissingError(ImportError):
def __init__(self, message=WEB_DEPENDENCY_MISSING_MESSAGE):
super().__init__(message)