Installation
Supported Python Versions
The pyvizionsdk package is a CPython extension, supporting the following Python versions:
- Python 3.8
- Python 3.9
- Python 3.10
- Python 3.11
- Python 3.12
- Python 3.13
Installation Steps
Note:
Installing with a Python virtual environment is recommended.
Python Virtual Environment Setup
- Open the terminal, create the virtual environment with
venv
python -m venv {env_name}
- Activate the environment
- Windows (x64)
{env_name}\Scripts\activate
- Linux (x86_64) and ARM (aarch64)
source {env_name}/bin/activate
- Windows (x64)
- Install pyvizionsdk package
pip install pyvizionsdk --extra-index-url https://pypi.vizionsdk.com/root/pyvizionsdk/+simple/
- Deactivate the environment
deactivate
Windows (x64)
- Download the wheel file from pyvizionsdk Download Page.
- Choose the file matching your Python version:
pyvizionsdk-{version}-cp{python_version}-cp{python_version}-win_amd64.whl
- Open Command Prompt or PowerShell.
- Install with pip:
pip install pyvizionsdk-{version}-cp{python_version}-cp{python_version}-win_amd64.whl
- Or install directly from the website:
pip install pyvizionsdk --extra-index-url https://pypi.vizionsdk.com/root/pyvizionsdk/+simple/
Linux (x86_64)
Supported platforms: General PCs, UP Squared Pro 7000
- Download the wheel file from pyvizionsdk Download Page.
- Choose the file matching your Python version:
pyvizionsdk-{version}-cp{python_version}-cp{python_version}-manylinux_2_31_x86_64.whl
- Open Terminal.
- Install with pip:
pip install pyvizionsdk-{version}-cp{python_version}-cp{python_version}-manylinux_2_31_x86_64.whl
- Or install directly from the website:
pip install pyvizionsdk --extra-index-url https://pypi.vizionsdk.com/root/pyvizionsdk/+simple/
ARM (aarch64)
Supported platforms: NXP-iMX8MP, NXP-iMX8MM, NXP-iMX93, NXP-iMX95, NVIDIA-6.x and later
- Download the wheel file from pyvizionsdk Download Page.
- Choose the file matching your Python version:
pyvizionsdk-{version}-cp{python_version}-cp{python_version}-manylinux_2_34_aarch64.whl
- Open Terminal.
- Install with pip:
pip install pyvizionsdk-{version}-cp{python_version}-cp{python_version}-manylinux_2_34_aarch64.whl
- Or install directly from the website:
pip install pyvizionsdk --extra-index-url https://pypi.vizionsdk.com/root/pyvizionsdk/+simple/