Hi, I followed the below link to detect objects with Python. I need to use some python libraries (such as serial) with it but, because of this python code works inside docker/run.sh, I’m not able to import any other libraries. How can I import python libraries? and also I’m wondering is it possible to run this script without using docker/run.sh.
Thanks.
Hi @CostGazelle, you would need to install the Python modules inside the container if they aren’t already. Also, you would want to mount a directory containing your customized version of detectnet.py so that your modifications to it are present inside the container (see here for more info about doing that)