KWWidgets/Projects/3DWidgets/Part2/Widgets/VTK

From KitwarePublic
Revision as of 11:55, 3 January 2007 by Xavor (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Installing VTK on a Linux System

CVS Command 2

Setting up

The latest CVS version of VTK may require the latest version of CMake - if your version isn't the latest, compiling VTK will likely give an error that will note the minumum required version of CMake.

  • CVS


  • CMake


Installing and Compiling

  • CMake

Installing by CMake's included instructions may not always be simple. Some downloads include installation scripts and others may be just the usable files.

If there are no scripts in the downloaded archive, you will need to copy the files to the /usr/local directory with superuser privileges.

CMake archive contents

  • VTK

First you need to download the latest VTK release via CVS. This ensures that you have the correct classes required for the 3D widgets.

Following the CVS download commands (www.vtk.org): In a terminal window type:

cvs -d :pserver:anonymous@public.kitware.com:/cvsroot/VTK login

CVS command 1

Respond with the password "vtk".

Next type the command:

 cvs -d :pserver:anonymous@public.kitware.com:/cvsroot/VTK checkout VTK

CVS Command 2

CVS will then commence downloading.

In a terminal window, change to the VTK install directory.

ccmake .

ccmake

In the screen shown, pressing "c" will commence the configuration. If the vtk installation directory is not in your system's path, there will be at leat one error shown - press "e" to go back to the previous screen. Here you will need to scroll down with the cursor keys to the VTK_DATA_ROOT and press "Return" to edit the data. Here you will need to type in the vtk installation directory and press "Return". Next, press "c" to configure with the correct directory. You may need to press "c" a second time. Once configuration is complete, press "g" to generate the CMake files. Then "q" to exit.

cmake .

cmake

make

make The vtk library will be built. Note, this may take a while!