Hi all,
I have libvtk9-dev installed on Ubuntu 22.04 Jammy, and using it within my project to write my output to vtp file, I importing it to my project through CMake.
find_package(VTK REQUIRED)
target_link_libraries(sim PRIVATE ${VTK_LIBRARIES} OpenSSL::Crypto)
But I want to visualize my results, i tried to install paraview through sudo apt get paraview
, but it seems there is a conflict between paraview and vtk9 and it removes libvtk9-dev during installation as seen in the attachment. Then my program crashes and cannot build because it can not find vtk anymore. Is there a way to install paraview without removing libvtk9-dev?
Thank you in advance.