Learn VTK By Python Script On Mac
The post introduces how to create an environment for learning VTK by Python. The basic conditions on my computer: VTK-8.1.1 macOS Mojave 10.14 Python 2.7.10 Write a bash script and run it. cmake ./ -G “Unix Makefiles” \ -DVTK_USE_QVTK:BOOL=ON \ -DCMAKE_INSTALL_PREFIX=/usr/local \ -DVTK_USE_GUISUPPORT:BOOL=ON \ -DVTK_QT_VERSION=5 \ -DModule_vtkGUISupportQt:BOOL=ON \ -DModule_vtkGUISupportQtOpenGL:BOOL=ON \ Read more…