Hi,
I have download a few months ago a trt_pose python file of jetcam module. Now I have download the jetson-inference module, but since the download of jetson-inference when I want to launch trt_pose with the line command ./trt_working.py
, it tells me File "./trt_working.py", line 3, in <module>from jetcam.utils import bgr8_to_jpeg ModuleNotFoundError : No module named 'jetcam'
PS : I didn’t move the project file and its architecture.
What is the problem?
Thanks for your help.
T.
Hi,
Since the script cannot file the jetcam
module.
Would you mind to reinstall jetcam to see if it helps?
Thanks
Thanks @AastaLLL for your help.
I reinstalled it in vain …
vraiplus@vraiplus-jetson:~/Documents/trt_pose/tasks/human_pose$ ./trt_working.pyTraceback (most recent call last): File "./trt_working.py", line 3, in <module> from jetcam.utils import bgr8_to_jpeg File "/usr/local/lib/python3.7/dist-packages/jetcam-0.0.0-py3.7.egg/jetcam/__init__.py", line 1, in <module> File "/usr/local/lib/python3.7/dist-packages/jetcam-0.0.0-py3.7.egg/jetcam/camera.py", line 1, in <module> ModuleNotFoundError: No module named 'traitlets'
There is no update from you for a period, assuming this is not an issue any more.
Hence we are closing this topic. If need further support, please open a new one.
Thanks
Hi,
Could you try below command to see if it helps?
$ sudo pip3 install traitlets
Thanks.