Hello - I'm trying to setup the eIQ Toolkit from following the demo instructions in nxp-nnstreamer-examples
As per the instructions, I have installed the eIQ Toolkit (in /opt/nxp) - however when installing the supplementary packages with this command:
python -m pip install -r <nxp-nnstreamer-examples>/downloads/requirements.txt
I keep hitting this warning:
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available
It seems that the python SSL module is not present in the eIQ Toolkit python environment:
$ python -c "import ssl; print(ssl.OPENSSL_VERSION_INFO)"
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/opt/nxp/eIQ_Toolkit_v1.17.0/python/lib/python3.10/ssl.py", line 99, in <module>
import _ssl # if we can't import it, let the error propagate
ImportError: libssl.so.1.1: cannot open shared object file: No such file or directory
However, I have this installed correctly on my main environment on this host PC (outside of the eIQ Toolkit environment):
$ python -c "import ssl; print(ssl.OPENSSL_VERSION_INFO)"
(3, 0, 0, 2, 0)
Any ideas how to fix this? It's particularly puzzling as this is just by following the demo examples from nxp-nnstreamer-examples.
This is on Ubuntu 22.04.
Many thanks!