ITK/Getting Started/Obtain/Linux/Git: Difference between revisions
From KitwarePublic
< ITK | Getting Started | Obtain | Linux
Jump to navigationJump to search
Daviddoria (talk | contribs) (Created page with "ITK uses git for its version control system. If you are familiar with git, you can find relevant information here or here. If not, continue read...") |
(Update git link) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
ITK uses | ITK uses Git for its version control system. If you are familiar with Git, you can find relevant information [[ITK/Source#2._Git|here]] or [[ITK/Git|here]]. If not, continue reading! | ||
To get the latest ITK source code, you must use git. If you do not have git installed, please install it from your package manager | To get the latest ITK source code, you must use git. If you do not have git installed, please install it from your package manager: | ||
sudo apt-get install git | |||
git | Once you have git installed, type this command in a terminal window: | ||
This will create an ITK directory and download the latest ITK source code into that directory. ''Step 1: Obtaining'' is now complete! | git clone https://github.com/InsightSoftwareConsortium/ITK.git | ||
This will create an ITK directory and download the latest ITK source code into that directory. | |||
''Step 1: Obtaining'' is now complete! |
Latest revision as of 15:00, 27 December 2022
ITK uses Git for its version control system. If you are familiar with Git, you can find relevant information here or here. If not, continue reading!
To get the latest ITK source code, you must use git. If you do not have git installed, please install it from your package manager:
sudo apt-get install git
Once you have git installed, type this command in a terminal window:
git clone https://github.com/InsightSoftwareConsortium/ITK.git
This will create an ITK directory and download the latest ITK source code into that directory.
Step 1: Obtaining is now complete!