You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: INSTALLATION.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,14 +26,18 @@ Installation is currently not supported for independent RTK compilations.
26
26
27
27
Pre-compiled binaries
28
28
---------------------
29
-
We only provide pre-compiled binaries for the Python package which depends on ITK. Use the following commands to install RTK module with `pip`.
29
+
We only provide pre-compiled binaries for the Python package which depends on ITK. Use the following commands to install the RTK module with `pip`.
30
30
```
31
31
python -m pip install --upgrade pip
32
32
python -m pip install itk-rtk
33
33
```
34
-
35
34
The same operating systems and Python versions are supported as ITK's packages, see the list on [Pypi](https://pypi.org/project/itk-rtk).
36
35
36
+
We also provide pre-compiled [CUDA](https://developer.nvidia.com/cuda-toolkit) packages for Windows and Linux. They require an installed version of CUDA 11.6. Use the following command instead of the above one to install the CUDA RTK module with `pip`.
37
+
```
38
+
python -m pip install itk-rtk-cuda116
39
+
```
40
+
37
41
Getting started
38
42
---------------
39
43
See [GettingStarted.md](GettingStarted.md). Your `CMakeLists.txt` can now use RTK when importing ITK as shown in the [FirstReconstruction's CMakeLists.txt](https://github.com/SimonRit/RTK/blob/master/examples/FirstReconstruction/CMakeLists.txt#L7).
0 commit comments