holoscan


Nameholoscan JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttps://github.com/nvidia-holoscan
SummaryThe Holoscan SDK: building high-performance AI streaming applications
upload_time2024-04-19 14:20:59
maintainerNone
docs_urlNone
authorNVIDIA Corporation
requires_python>=3.8
licenseApache-2.0
keywords ai cuda medical streaming hpc nvidia
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Holoscan SDK

The **Holoscan SDK Python Wheel** is part of [NVIDIA Holoscan](https://developer.nvidia.com/holoscan-sdk), the AI sensor processing platform that combines hardware systems for low-latency sensor and network connectivity, optimized libraries for data processing and AI, and core microservices to run streaming, imaging, and other applications, from embedded to edge to cloud. It can be used to build streaming AI pipelines for a variety of domains, including Medical Devices, High Performance Computing at the Edge, Industrial Inspection and more.

## Getting Started

Visit the Holoscan User Guide to [get started](https://docs.nvidia.com/holoscan/sdk-user-guide/getting_started.html) with the Holoscan SDK.

## Prerequisites

- Prerequisites for each supported platform are documented in [the user guide](https://docs.nvidia.com/holoscan/sdk-user-guide/sdk_installation.html#prerequisites). Note that the python wheels have a lot of optional dependencies which you may install manually based on your needs (see compatibility matrix at the bottom).
- The Holoscan SDK python wheels are only formally tested on Ubuntu 22.04. They are, however, expected to work on any Linux distribution with glibc 2.35 or above (see output of `ldd --version`) and CUDA Runtime 12.2 or above.
- Python: 3.8 to 3.11

## Troubleshooting

> Version 0.6.0 gets installed instead of the latest version

The latest version of the wheels were built and tested on Ubuntu 22.04 with glibc 2.35. You'll need to switch to a Linux distribution with a more recent version of glibc to use the Holoscan SDK python wheels 1.0 or above (check your version with `ldd --version`), or use the [Holoscan SDK NGC container](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara-holoscan/containers/holoscan) instead.

> ```
> ERROR: Could not find a version that satisfies the requirement holoscan==<version>
> ERROR: No matching distribution found for holoscan==<version>
> ```

Same as above, OR incompatible python version.

> ```
> libc.so.6: version 'GLIBC_2.32 not found
> libstdc++.so.6: version `GLIBCXX_3.4.29` not found
> ```

Same as above.

> ```
> ImportError: libcudart.so.12: cannot open shared object file: No such file or directory
> ```

CUDA runtime is missing from your system (required even for CPU only pipelines).

- **x86_64**: Follow the official [installation steps](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html).
  - Note: while Holoscan does not use the CUDA Python API, you could install the CUDA runtime python wheel if you prefer to use `pip` instead of installing it system-wide: `python3 -m pip install nvidia-cuda-runtime-cu12`. Before calling an Holoscan application, ensure to update your `LD_LIBRARY_PATH` environment variable to include the path to these CUDA libs, for example:
    ```sh
    export CUDA_WHL_LIB_DIR=$(python3 -c 'import nvidia.cuda_runtime; print(nvidia.cuda_runtime.__path__[0])')/lib
    export LD_LIBRARY_PATH="$CUDA_WHL_LIB_DIR:$LD_LIBRARY_PATH"
    ```
- **IGX Orin**: Ensure the [compute stack](https://docs.nvidia.com/igx-orin/user-guide/latest/base-os.html#installing-the-compute-stack) is installed.
- **Jetson**: Re-install [JetPack 6.0](https://developer.nvidia.com/embedded/jetpack).

> ```
> Error: libnvinfer.so.8: cannot open shared object file: No such file or directory
> ...
> Error: libnvonnxparser.so.8: cannot open shared object file: No such file or directory
> ```

TensorRT is missing from your system (note that it is only needed by the `holoscan.operators.InferenceOp` operator.).

- **x86_64**: Follow the official [installation steps](https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html).
  - Note: you can also install the TensorRT libraries python wheel if you prefer to use `pip` instead of installing it system-wide: `python3 -m pip install tensorrt-libs~=8.6.1 --index-url https://pypi.nvidia.com`. Before calling an Holoscan application, ensure to update your `LD_LIBRARY_PATH` environment variable to include the path to these TensorRT libs, for example:
    ```sh
    export TRT_WHL_LIB_DIR=$(python3 -c 'import tensorrt_libs; print(tensorrt_libs.__path__[0])')
    export CUDNN_WHL_LIB_DIR=$(python3 -c 'import nvidia.cudnn; print(nvidia.cudnn.__path__[0])')/lib
    export CUBLAS_WHL_LIB_DIR=$(python3 -c 'import nvidia.cublas; print(nvidia.cublas.__path__[0])')/lib
    export LD_LIBRARY_PATH="$TRT_WHL_LIB_DIR:$CUDNN_WHL_LIB_DIR:$CUBLAS_WHL_LIB_DIR:$LD_LIBRARY_PATH"
    ```
- **IGX Orin**: Ensure the [compute stack](https://docs.nvidia.com/igx-orin/user-guide/latest/base-os.html#installing-the-compute-stack) is installed.
- **Jetson**: Re-install [JetPack 6.0](https://developer.nvidia.com/embedded/jetpack).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/nvidia-holoscan",
    "name": "holoscan",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "AI, CUDA, medical, streaming, HPC, nvidia",
    "author": "NVIDIA Corporation",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "# Holoscan SDK\n\nThe **Holoscan SDK Python Wheel** is part of [NVIDIA Holoscan](https://developer.nvidia.com/holoscan-sdk), the AI sensor processing platform that combines hardware systems for low-latency sensor and network connectivity, optimized libraries for data processing and AI, and core microservices to run streaming, imaging, and other applications, from embedded to edge to cloud. It can be used to build streaming AI pipelines for a variety of domains, including Medical Devices, High Performance Computing at the Edge, Industrial Inspection and more.\n\n## Getting Started\n\nVisit the Holoscan User Guide to [get started](https://docs.nvidia.com/holoscan/sdk-user-guide/getting_started.html) with the Holoscan SDK.\n\n## Prerequisites\n\n- Prerequisites for each supported platform are documented in [the user guide](https://docs.nvidia.com/holoscan/sdk-user-guide/sdk_installation.html#prerequisites). Note that the python wheels have a lot of optional dependencies which you may install manually based on your needs (see compatibility matrix at the bottom).\n- The Holoscan SDK python wheels are only formally tested on Ubuntu 22.04. They are, however, expected to work on any Linux distribution with glibc 2.35 or above (see output of `ldd --version`) and CUDA Runtime 12.2 or above.\n- Python: 3.8 to 3.11\n\n## Troubleshooting\n\n> Version 0.6.0 gets installed instead of the latest version\n\nThe latest version of the wheels were built and tested on Ubuntu 22.04 with glibc 2.35. You'll need to switch to a Linux distribution with a more recent version of glibc to use the Holoscan SDK python wheels 1.0 or above (check your version with `ldd --version`), or use the [Holoscan SDK NGC container](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/clara-holoscan/containers/holoscan) instead.\n\n> ```\n> ERROR: Could not find a version that satisfies the requirement holoscan==<version>\n> ERROR: No matching distribution found for holoscan==<version>\n> ```\n\nSame as above, OR incompatible python version.\n\n> ```\n> libc.so.6: version 'GLIBC_2.32 not found\n> libstdc++.so.6: version `GLIBCXX_3.4.29` not found\n> ```\n\nSame as above.\n\n> ```\n> ImportError: libcudart.so.12: cannot open shared object file: No such file or directory\n> ```\n\nCUDA runtime is missing from your system (required even for CPU only pipelines).\n\n- **x86_64**: Follow the official [installation steps](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html).\n  - Note: while Holoscan does not use the CUDA Python API, you could install the CUDA runtime python wheel if you prefer to use `pip` instead of installing it system-wide: `python3 -m pip install nvidia-cuda-runtime-cu12`. Before calling an Holoscan application, ensure to update your `LD_LIBRARY_PATH` environment variable to include the path to these CUDA libs, for example:\n    ```sh\n    export CUDA_WHL_LIB_DIR=$(python3 -c 'import nvidia.cuda_runtime; print(nvidia.cuda_runtime.__path__[0])')/lib\n    export LD_LIBRARY_PATH=\"$CUDA_WHL_LIB_DIR:$LD_LIBRARY_PATH\"\n    ```\n- **IGX Orin**: Ensure the [compute stack](https://docs.nvidia.com/igx-orin/user-guide/latest/base-os.html#installing-the-compute-stack) is installed.\n- **Jetson**: Re-install [JetPack 6.0](https://developer.nvidia.com/embedded/jetpack).\n\n> ```\n> Error: libnvinfer.so.8: cannot open shared object file: No such file or directory\n> ...\n> Error: libnvonnxparser.so.8: cannot open shared object file: No such file or directory\n> ```\n\nTensorRT is missing from your system (note that it is only needed by the `holoscan.operators.InferenceOp` operator.).\n\n- **x86_64**: Follow the official [installation steps](https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html).\n  - Note: you can also install the TensorRT libraries python wheel if you prefer to use `pip` instead of installing it system-wide: `python3 -m pip install tensorrt-libs~=8.6.1 --index-url https://pypi.nvidia.com`. Before calling an Holoscan application, ensure to update your `LD_LIBRARY_PATH` environment variable to include the path to these TensorRT libs, for example:\n    ```sh\n    export TRT_WHL_LIB_DIR=$(python3 -c 'import tensorrt_libs; print(tensorrt_libs.__path__[0])')\n    export CUDNN_WHL_LIB_DIR=$(python3 -c 'import nvidia.cudnn; print(nvidia.cudnn.__path__[0])')/lib\n    export CUBLAS_WHL_LIB_DIR=$(python3 -c 'import nvidia.cublas; print(nvidia.cublas.__path__[0])')/lib\n    export LD_LIBRARY_PATH=\"$TRT_WHL_LIB_DIR:$CUDNN_WHL_LIB_DIR:$CUBLAS_WHL_LIB_DIR:$LD_LIBRARY_PATH\"\n    ```\n- **IGX Orin**: Ensure the [compute stack](https://docs.nvidia.com/igx-orin/user-guide/latest/base-os.html#installing-the-compute-stack) is installed.\n- **Jetson**: Re-install [JetPack 6.0](https://developer.nvidia.com/embedded/jetpack).\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "The Holoscan SDK: building high-performance AI streaming applications",
    "version": "2.0.0",
    "project_urls": {
        "Documentation": "https://docs.nvidia.com/holoscan/sdk-user-guide/index.html",
        "Homepage": "https://github.com/nvidia-holoscan",
        "Issue Tracker": "https://github.com/nvidia-holoscan/holoscan-sdk/issues",
        "Source": "https://github.com/nvidia-holoscan/holoscan-sdk"
    },
    "split_keywords": [
        "ai",
        " cuda",
        " medical",
        " streaming",
        " hpc",
        " nvidia"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52d81a28f66f73f3df79378a325256fa53b0cbf4176257e0ac2f38ba45f761ce",
                "md5": "0c80a585f355a22c0ca9a5d1a80aaeaf",
                "sha256": "db9918da3df0601b85de6928efe9b1b6cc55c4654c83c0a1f93a42033d84d442"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp310-cp310-manylinux_2_35_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c80a585f355a22c0ca9a5d1a80aaeaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31695205,
            "upload_time": "2024-04-19T14:20:59",
            "upload_time_iso_8601": "2024-04-19T14:20:59.728694Z",
            "url": "https://files.pythonhosted.org/packages/52/d8/1a28f66f73f3df79378a325256fa53b0cbf4176257e0ac2f38ba45f761ce/holoscan-2.0.0-cp310-cp310-manylinux_2_35_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "debd96507715202275267b0f490bab50c29c7914d92f08ca5581d53bb5e91781",
                "md5": "7d83fff985395aaf2bef44c1b2c3b0bc",
                "sha256": "14084734403ec09013adc5c2f2b942556213862894c7229eedd0173f34d5a43e"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d83fff985395aaf2bef44c1b2c3b0bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 33232840,
            "upload_time": "2024-04-19T14:21:16",
            "upload_time_iso_8601": "2024-04-19T14:21:16.511269Z",
            "url": "https://files.pythonhosted.org/packages/de/bd/96507715202275267b0f490bab50c29c7914d92f08ca5581d53bb5e91781/holoscan-2.0.0-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2002aafab6b4b0f46ceee3f359a78f4ce72b2ec9757a51c60b31e2b67269d8d7",
                "md5": "eed64b370c43566162a8bdec245187ad",
                "sha256": "1b430d081e9b8add36a643d7de3542f9b4f692b4682a87e4d421037571c97d6b"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp311-cp311-manylinux_2_35_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eed64b370c43566162a8bdec245187ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 31722598,
            "upload_time": "2024-04-19T14:21:35",
            "upload_time_iso_8601": "2024-04-19T14:21:35.677333Z",
            "url": "https://files.pythonhosted.org/packages/20/02/aafab6b4b0f46ceee3f359a78f4ce72b2ec9757a51c60b31e2b67269d8d7/holoscan-2.0.0-cp311-cp311-manylinux_2_35_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4829063f8d198d32403a16122ebd534f1dae875dfb27d711234bc00e97e5ba8",
                "md5": "32793ed0df287c520c537cfb4931fe43",
                "sha256": "5a50441b12acabbb7f62ce613637dc1b6ae37a9157e53d8009066d843c03397a"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32793ed0df287c520c537cfb4931fe43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 33263521,
            "upload_time": "2024-04-19T14:21:53",
            "upload_time_iso_8601": "2024-04-19T14:21:53.734154Z",
            "url": "https://files.pythonhosted.org/packages/e4/82/9063f8d198d32403a16122ebd534f1dae875dfb27d711234bc00e97e5ba8/holoscan-2.0.0-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f1d7e1cc49805e35f99560cda916307096549cd769fd622574b66a4a0a95035",
                "md5": "b6e566a244c68c603ae48f58d907baf0",
                "sha256": "2c3983502d8591f1399a5d34d09096c820f741b3772bf7721ca7b1da2b284001"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp38-cp38-manylinux_2_35_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6e566a244c68c603ae48f58d907baf0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 31689363,
            "upload_time": "2024-04-19T14:22:11",
            "upload_time_iso_8601": "2024-04-19T14:22:11.240998Z",
            "url": "https://files.pythonhosted.org/packages/2f/1d/7e1cc49805e35f99560cda916307096549cd769fd622574b66a4a0a95035/holoscan-2.0.0-cp38-cp38-manylinux_2_35_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "638d077fabe8348ede0de71dacff406df1ae8544ad457c038597460222673241",
                "md5": "768bee9ae7350eb6bcc601f376e4234f",
                "sha256": "a0c019a0da2c7b23b0f6f72002e7967160f865df12e7f61ef45e703b87531a34"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp38-cp38-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "768bee9ae7350eb6bcc601f376e4234f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33231794,
            "upload_time": "2024-04-19T14:22:29",
            "upload_time_iso_8601": "2024-04-19T14:22:29.563856Z",
            "url": "https://files.pythonhosted.org/packages/63/8d/077fabe8348ede0de71dacff406df1ae8544ad457c038597460222673241/holoscan-2.0.0-cp38-cp38-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5bdb334325c3c87bc33679f513e2523c086cdeb819fc3481472a9be135fef12",
                "md5": "376d4399d4cc50f202c6c50c4f6574be",
                "sha256": "9de70007540c5b1a4ee59f42564d25e7232cfa2a4af9b703bc89a3f5c62a9cc3"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp39-cp39-manylinux_2_35_aarch64.whl",
            "has_sig": false,
            "md5_digest": "376d4399d4cc50f202c6c50c4f6574be",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31700268,
            "upload_time": "2024-04-19T14:22:47",
            "upload_time_iso_8601": "2024-04-19T14:22:47.415519Z",
            "url": "https://files.pythonhosted.org/packages/e5/bd/b334325c3c87bc33679f513e2523c086cdeb819fc3481472a9be135fef12/holoscan-2.0.0-cp39-cp39-manylinux_2_35_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b815f31cb4a5f39120e3bbb0388cc7ff071c1c48152f3bc063406bcd10cecdf2",
                "md5": "7dd6d4ab15d908e2f2d0253280980fb8",
                "sha256": "b8fed02fb2473686a23d0cda3c91787bf037d3137ee8c39e6543057fdf0fe0ad"
            },
            "downloads": -1,
            "filename": "holoscan-2.0.0-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7dd6d4ab15d908e2f2d0253280980fb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 33237461,
            "upload_time": "2024-04-19T14:23:05",
            "upload_time_iso_8601": "2024-04-19T14:23:05.749097Z",
            "url": "https://files.pythonhosted.org/packages/b8/15/f31cb4a5f39120e3bbb0388cc7ff071c1c48152f3bc063406bcd10cecdf2/holoscan-2.0.0-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 14:20:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nvidia-holoscan",
    "github_project": "holoscan-sdk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "holoscan"
}
        
Elapsed time: 0.25567s