Python Installation Instructions
Install Zivid Python. Note: The recommended Python version for these samples is 3.8.
[Optional] Launch the Python IDE of your choice. Read our instructions on setting up Python.
Install the runtime requirements using IDE or command line:
pip install -r requirements.txt
Add the directory source to PYTHONPATH. Navigate to the root of the repository and run:
PowerShell:
$env:PYTHONPATH=$env:PYTHONPATH + ";$PWD\source"
cmd:
set PYTHONPATH="$PYTHONPATH;$PWD\source"
bash:
export PYTHONPATH="$PYTHONPATH:$PWD/source"
Open and run one of the samples.