Skip to content

Commit

Permalink
fix(python): vtk path
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Mar 17, 2024
1 parent e8764a0 commit ceac1da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/__init__.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ def _windows_dll_path():
import os
import vtk

vtk_path = vtk.__path__[0]

additional_paths = [
vtk.__path__[0],
vtk_path,
os.path.join(os.path.dirname(vtk_path), 'vtk.libs'),
os.path.join(os.path.dirname(os.path.dirname(__file__)), 'viennaps.libs')
]
Expand Down

0 comments on commit ceac1da

Please sign in to comment.