Need urgent help as i was not able to run my yolov8 object detection on my jetson orin nano super development kit.
jetpack l4t 36.4.4
cuda = 12.6
please help
Need urgent help as i was not able to run my yolov8 object detection on my jetson orin nano super development kit.
jetpack l4t 36.4.4
cuda = 12.6
please help
*** Please note that this reply is generated by LLM automatically ***
I’d be happy to help you with running YOLOv8 object detection on your Jetson Orin Nano Super development kit.
Firstly, I’d like to confirm that you are using JetPack 6.2/Jetson Linux 36.4.4, CUDA 12.6, and the Jetson Orin Nano Super development kit. This is a great setup for running AI models like YOLOv8.
To troubleshoot the issue, could you please provide more details about the error you are encountering? For example, are you getting any error messages, and if so, what do they say? Additionally, have you tried running any other AI models on your Jetson Orin Nano Super, and if so, did they work successfully?
Assuming you have installed the necessary dependencies, including CUDA, cuDNN, and OpenCV, here are some potential steps to resolve the issue:
nvcc --version
nvidia-smi
pkg-config --modversion opencv4
sudo apt update
sudo apt install nvidia-jetpack
sudo apt install cuda-toolkit-12-6
git clone https://github.com/opencv/opencv.git
cd opencv
mkdir build
cd build
cmake ..
make
sudo make install
git clone https://github.com/ultralytics/yolov8.git
cd yolov8
pip install -r requirements.txt
python detect.py --weights yolov8s.pt --source 0 --device 0
If you are still encountering issues, please provide more details about the error you are seeing, and I’ll do my best to help you troubleshoot the problem.
In comparison to other Jetson modules, the Jetson Orin Nano Super has a more powerful GPU and more memory, which should make it well-suited for running AI models like YOLOv8. However, the troubleshooting steps I provided above should be applicable to other Jetson modules as well.
I hope this helps! Let me know if you have any further questions or if there’s anything else I can help you with.
*** Please give the thumbs up if you get answers you like. Or provide feedback to help us improve the answer. ***
Hi,
Please find the tutorial for YOLOv8 below:
Thanks.