Skip to content

Basic Installation

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 Miniconda. Please follow this link for Miniconda installation instructions.

Installation Options

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

python3 -m pip install degirum

If the python3 command is not available (typically under Windows Miniconda), use one of the following:

pip install degirum
python -m pip install degirum

To perform a clean upgrade to the latest PySDK version, use:

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

If you are using Windows PowerShell, replace && with ;:

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

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 on how to run these images and for corresponding source Dockerfiles.