ITK/Source: Difference between revisions
From KitwarePublic
< ITK
Jump to navigationJump to search
(Created from antonym) |
Jhlegarreta (talk | contribs) (Add the historical label after Change-Id I5b79451da962c95614c65e09679bc8b5c12b6dea was merged) |
||
(24 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
{{ Historical }} | |||
The source distribution for ITK can be obtained in two ways: | The source distribution for ITK can be obtained in two ways: | ||
# Official release tarballs | # Official release tarballs | ||
# | # Git SCM checkout. | ||
== 1. Official Releases == | == 1. Official Releases == | ||
=== Source code === | |||
* 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 === | |||
==== Debian ==== | |||
sudo apt-get install libinsighttoolkit4-dev | |||
==== Ubuntu ==== | |||
sudo apt-get install libinsighttoolkit4-dev | |||
This will give you the libraries and development headers. | |||
For information on other ITK packages and packages for other distributions, see [https://blog.kitware.com/itk-packages-in-linux-distributions/ this blog post]. | |||
== 2. Git == | |||
=== Development === | |||
git clone https://itk.org/ITK.git | |||
=== Latest Stable Release === | |||
git clone -b release https://itk.org/ITK.git ITKLatestRelease | |||
=== Previous Releases === | |||
You can get specific releases by using the tags, | |||
for example: | |||
git clone -b v4.10.0 https://itk.org/ITK.git ITK-4.10.0 | |||
{{ITK/Template/Footer}} | |||
Latest revision as of 15:06, 6 October 2017
This page is currently inactive and is retained for historical reference. Either the page is no longer relevant or consensus on its purpose has become unclear. To revive discussion, seek broader input via a forum such as the village pump. |
The source distribution for ITK can be obtained in two ways:
- Official release tarballs
- Git SCM checkout.
1. Official Releases
Source code
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 libinsighttoolkit4-dev
Ubuntu
sudo apt-get install libinsighttoolkit4-dev
This will give you the libraries and development headers.
For information on other ITK packages and packages for other distributions, see this blog post.
2. Git
Development
git clone https://itk.org/ITK.git
Latest Stable Release
git clone -b release https://itk.org/ITK.git ITKLatestRelease
Previous Releases
You can get specific releases by using the tags, for example:
git clone -b v4.10.0 https://itk.org/ITK.git ITK-4.10.0