Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing Ubuntu prerequisite to installation instructions #1547

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Prerequisites
--------------------------
MONAI Label supports both **Ubuntu** and **Windows** OS with GPU/CUDA enabled.

Make sure you have python 3.8/3.9 version environment with PyTorch and CUDA installed. MONAI Label features on other python version are not verified.
Make sure you have python 3.8/3.9 version environment with PyTorch and CUDA installed. MONAI Label features on other python version are not verified.

- Install `Python <https://www.python.org/downloads/>`_
- Install the following Python libraries
Expand All @@ -65,6 +65,12 @@ Make sure you have python 3.8/3.9 version environment with PyTorch and CUDA inst
# Check if cuda enabled
python -c "import torch; print(torch.cuda.is_available())"

On **Ubuntu** only, `python3-dev`, which contains the header files for the Python C API, is not bundled with Python and needs to be installed separately.

.. code-block::

sudo apt install python3-dev

Install From PyPI
------------------------

Expand Down