Skip to content

Installation

PySDK Supported Configurations

The table below lists operating systems, CPU architectures, and Python versions supported by latest released PySDK version.

Operating System Supported CPU Architectures Supported Python Versions
Ubuntu Linux 20.04, 22.04 x86-64 3.8 ... 3.12
Ubuntu Linux 20.04, 22.04 ARM AArch64 3.8 ... 3.12
Raspberry Pi OS (64 bit) ARM AArch64 3.9
Windows 10/11 x86-64 3.8 ... 3.12
macOS 12 x86-64 3.9
macOS 12 ARM AArch64 3.9

Basic Installation of PySDK Python Package

It is recommended to install PySDK in a virtual environment. Please see PySDK Supported Configurations for a list of supported system configurations.

To simplify Python installation and package management, we recommend to use Mniconda. Please follow this link for Miniconda installation instructions.

To install DeGirum PySDK from PyPI.org use the following command:

Install

python3 -m pip install degirum

If python3 command for some reason is not available (typically under Windows Miniconda), try to either use pip directly, or use python:

Alternative Install

pip install degirum
python -m pip install degirum

To do clean upgrade to the most recent PySDK version use the following command:

Clean upgrade

python3 -m pip uninstall -y degirum && python3 -m pip install degirum

If you use Windows PowerShell, change && to ; (you may also try to use pip command directly, if python3 command is not available):

Clean upgrade for PowerShell

(pip uninstall -y degirum) ; (pip install degirum)

If during the installation you get the following errors:

Failure

ERROR: Could not find a version that the requirement degirum
ERROR: No matching distribution found for degirum

then try to upgrade pip package by running the following command:

Upgrade pip

python3 -m pip install -U pip

On Windows, install the Visual C++ Redistributable for Visual Studio 2015 and above.

DeGirum Docker Images

For the ease of deployment, DeGirum provides Docker images for the DeGirum AI server and PySDK AI client installations.

Please follow this GitHub link to DeGirum Docker repo for details how to run these images and for corresponding source Dockerfiles.

OpenVINO™ Runtime in PySDK

PySDK supports OpenVINO™ versions 2022.1.1, 2023.2.0 and 2023.3.0. Version 2023.3.0 is recommended.

Linux Installation

On Linux, installation via APT Package Manager or via .tgz archive is supported.

NPU Requirement

Currently, NPU requires that OpenVINO™ be installed via .tgz archive.

To install OpenVINO™ via APT Package Manager, click this link or the button below to read installation instructions.

OpenVINO™ Linux Installation via APT

To install OpenVINO™ via .tgz archive, click this link or the button below to read installation instructions.

OpenVINO™ Linux Installation via Archive

Configuring Environment

If you installed OpenVINO™ via .tgz archive, whenever you open a new terminal to use any degirum command, make sure to run

source <OpenVINO Directory>/setupvars.sh
When using PySDK in a python interpreter or a development environment, make sure to start the interpreter or environment from a terminal in which you've run this command.

Windows Installation

On Windows, installation via .zip archive is supported.

To install OpenVINO™ via .zip archive, click this link or the button below to read installation instructions.

OpenVINO™ Windows Installation

Configuring Environment

Whenever you open a new terminal to use any degirum command, make sure to run

<OpenVINO Directory>\setupvars.bat
When using PySDK in a python interpreter or a development environment, make sure to start the interpreter or environment from a terminal in which you've run this command. Make sure to use basic Command Prompt, and not PowerShell to run this script.

GPU Drivers for OpenVINO™

To install Intel GPU drivers, see the instructions at this link, or the button below.

OpenVINO™ GPU Driver Installation

Note

Currently, PySDK does not support any integrated GPUs.

NPU Drivers for OpenVINO™

The Linux NPU driver, as well as the instructions, is available via this link, or the button below.

OpenVINO™ Linux NPU Driver

The Windows NPU driver is available via this link or the first button below. The instructions are at this link or the second button below.

OpenVINO™ Windows NPU Driver OpenVINO™ Windows NPU Driver Instructions

Sometimes, the NPU can be disabled in UEFI by default. Make sure it is enabled. The procedure for enabling the NPU varies based on the UEFI.

ONNX Runtime in PySDK

PySDK supports version 1.15.1 of ONNX Runtime, on Linux, Windows, and Mac.

To install the ONNX runtime, download an 1.15.1 archive for your system here. Do not use the "-training-" archives. Then, extract it into an appropriate directory:

  • On Windows, extract the archive to C:\Program Files, C:\Program Files (x86), or C:\ProgramData.
  • On Linux, extract the archive to /usr/local/.
  • On Mac, extract the archive to /usr/local/.

Directory Name

Do not rename the onnxruntime-<os>-<architecture>-1.15.1 directory after you extract it.

Verification

After installing third party runtimes and any needed device drivers, you can verify PySDK access to the runtimes and the devices by using the system information command:

Verification

degirum sys-info

The output should contain all the devices available to PySDK and some information about them. Devices are listed as <runtime>/<device type>, for example, ONNX/CPU for CPU access via ONNX, or OPENVINO/NPU for NPU access via OpenVINO™.

Example of degirum sys-info output

Devices:
<other device types>
<runtime>/<device type>:
- '@Index': 0
  <device dependent information, optional>
- '@Index': 1
  <device dependent information, optional>
  <other devices>
<other device types>