Hi all
Is it possible to compile the Deepstream Python bindings for Python 3.7.5?
Kind regards
Peter
Hi all
Is it possible to compile the Deepstream Python bindings for Python 3.7.5?
Kind regards
Peter
deepstream_python_apps/HOWTO.md at master · NVIDIA-AI-IOT/deepstream_python_apps · GitHub claimed DS python supports Python 3, and according to What’s New In Python 3.7 — Python 3.10.7 documentation, the only Backwards incompatible syntax are async and await are now reserved keywords.
So, Deepstream Python bindings should support Python 3.7.5
Many thanks for the advice - FYI - this worked fine for 3.6 however pyds.so is compiled for 3.6 and not compatible with 3.7.5.
Kind regards
Peter
Yes, there is compatibility issue with Python3.7.5 as below, so it can only work with python3.6, sorry!
~/deepstream_sdk_v4.0.2_x86_64/sources/python/apps/deepstream-test1# python3.7 deepstream_test_1.py /root/deepstream_sdk_v4.0.2_x86_64/samples/streams/sample_720p.h264
Traceback (most recent call last):
File “deepstream_test_1.py”, line 33, in
import pyds
ImportError: Python version mismatch: module was compiled for Python 3.6, but the interpreter version is incompatible: 3.7.5 (default, Mar 11 2020, 02:30:14)
[GCC 7.4.0].
Hello, is it possible to have deepstream python bindings compiled for python 3.7? I am building a system that requires python >= 3.7 so I am in a kind of deadlock.
Also has such a requirement to use python 3.7.x.