先下载源码(貌似需要翻墙)https://vtk.org/download/
貌似需要cmake12来着
可以照着这个装https://blog.csdn.net/qq_39942341/article/details/120896883?spm=1001.2014.3001.5501
tar -zxvf VTK-9.1.0.rc2.tar.gz mkdir vtk-build&& cd vtk-build cmake-gui
第一个是源码位置
第二个是刚刚建的目录
然后点configure
这个选unix makefiles
然后finish
然后应该默认就行
然后generate
make -j 8 sudo make install
然后验证一下
https://kitware.github.io/vtk-examples/site/Cxx/GeometricObjects/CylinderExample/
tar -xvf CylinderExample.tar cd CylinderExample/ cmake CMakeLists.txt make ./CylinderExample
然而你可能跟我一样报错
cat /etc/ld.so.conf sudo sh -c "echo '/usr/local/lib' >> /etc/ld.so.conf" sudo sh -c "ldconfig"
然后再
./CylinderExample
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)