Enable Python support in ParaView. Resolves T7346.
Details
Details
- Reviewers
JoshStrobl - Group Reviewers
Triage Team - Maniphest Tasks
- T7346: Paraview Missing Python Support
- Commits
- R4568:2cd669e7acd5: Enable Python support in ParaView
Rendered a shape in RenderView using Python scripting:
cone = Cone() cone.Resolution = 64 Show(cone) Render()
Also installed system VTK along ParaView to ensure that there are no file conflicts.
Diff Detail
Diff Detail
- Repository
- R4568 paraview
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Sorry to be the annoying guy but python 2 is on its end, so please always prefer python 3 for new stuffs unless there is a specific need for python 2.
-DVTK_PYTHON_VERSION=3
Comment Actions
Okay, I'm actually rebuilding PV with Python 3 right now :) I'll update the diff if it builds correctly and my simple test works.
Comment Actions
Rebuild against Python 3.
Repeated all actions described in the test plan - everything works the same.