Skip to content

Commit f9dd51c

Browse files
committed
DOC: Add instructions on how to install the stable Python packages
Also fix going over the edge of th epage in the latest package install command. Change-Id: Iabc29ace87092b33c98a2f60563913b7caf6a447
1 parent bf33d01 commit f9dd51c

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

SoftwareGuide/Latex/A01-SystemOverview.tex

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -812,6 +812,21 @@ \section{Wrapping}
812812

813813
\subsection{Python Setup}
814814

815+
\subsubsection{Install Stable Python Packages}
816+
817+
Binary python packages are available in PyPI and can be installed in Python
818+
distributions downloaded from Python.org, from system package managers like
819+
\textit{apt} or \textit{homebrew}, or from distributions like Anaconda.
820+
821+
To install the ITK Python package, run:
822+
823+
\small
824+
\begin{minted}{bash}
825+
python -m pip install --upgrade pip
826+
python -m pip install itk
827+
\end{minted}
828+
\normalsize
829+
815830
\subsubsection{Install Latest Python Packages}
816831

817832
Binary python packages are built nightly from the Git \code{master} branch,
@@ -820,7 +835,8 @@ \subsubsection{Install Latest Python Packages}
820835
\small
821836
\begin{minted}{bash}
822837
python -m pip install --upgrade pip
823-
python -m pip install itk -f https://github.com/InsightSoftwareConsortium/ITKPythonPackage/releases/tag/latest
838+
python -m pip install itk \
839+
-f https://github.com/InsightSoftwareConsortium/ITKPythonPackage/releases/tag/latest
824840
\end{minted}
825841
\normalsize
826842

0 commit comments

Comments
 (0)