ITK/Source: Difference between revisions
From KitwarePublic
< ITK
Jump to navigationJump to search
No edit summary |
|||
Line 2: | Line 2: | ||
# Official release tarballs | # Official release tarballs | ||
# | # Git SCM checkout. | ||
== 1. Official Releases == | == 1. Official Releases == | ||
Line 9: | Line 9: | ||
* http://itk.org/ITK/resources/software.html | * http://itk.org/ITK/resources/software.html | ||
Note that the software must be compiled from source using CMake and your favorite C++ compiler. The toolkit can be installed, but it is not necessary -- it can be used directly from its build directory. | |||
=== Linux Package Distributions === | === Linux Package Distributions === | ||
Line 20: | Line 18: | ||
sudo apt-get install libinsighttoolkit3-dev | sudo apt-get install libinsighttoolkit3-dev | ||
==== Ubuntu ==== | ==== Ubuntu ==== | ||
sudo apt-get install libinsighttoolkit3-dev | sudo apt-get install libinsighttoolkit3-dev | ||
This will give you the libraries and development headers. Packaging for ITKv4 is underway. | |||
== 2. Git == | == 2. Git == | ||
Line 38: | Line 37: | ||
=== Previous Releases === | === Previous Releases === | ||
You can get specific releases by using the tags | You can get specific releases by using the tags, | ||
for example: | for example: | ||
git | git clone -b v4.0.0 git://itk.org/ITK.git ITK-4.0.0 | ||
{{ITK/Template/Footer}} | {{ITK/Template/Footer}} |
Revision as of 22:42, 10 February 2012
The source distribution for ITK can be obtained in two ways:
- Official release tarballs
- Git SCM checkout.
1. Official Releases
Download page
Note that the software must be compiled from source using CMake and your favorite C++ compiler. The toolkit can be installed, but it is not necessary -- it can be used directly from its build directory.
Linux Package Distributions
Debian
sudo apt-get install libinsighttoolkit3-dev
Ubuntu
sudo apt-get install libinsighttoolkit3-dev
This will give you the libraries and development headers. Packaging for ITKv4 is underway.
2. Git
Development
git clone git://itk.org/ITK.git
Latest Stable Release
git -b release git://itk.org/ITK.git ITKLatestRelease
Previous Releases
You can get specific releases by using the tags, for example:
git clone -b v4.0.0 git://itk.org/ITK.git ITK-4.0.0