Hey there! I’ve been trying to follow the “Two days to a Demo” tutorial: GitHub - dusty-nv/jetson-inference: Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson. . But I can’t get past the “Compiling the Project” point. Even though I flashed my Jetson TX2 with the whole Jetpack pack, it says the following:
In file included from /home/nvidia/Documents/Jetson/jetson-inference/detectNet.h:27:0,
from /home/nvidia/Documents/Jetson/jetson-inference/detectNet.cpp:23:
/home/nvidia/Documents/Jetson/jetson-inference/tensorNet.h:27:21: fatal error: NvInfer.h: No such file or directory
#include "NvInfer.h"
^
compilation terminated.
CMakeFiles/jetson-inference.dir/build.make:1409: recipe for target 'CMakeFiles/jetson-inference.dir/detectNet.cpp.o' failed
make[2]: *** [CMakeFiles/jetson-inference.dir/detectNet.cpp.o] Error 1
CMakeFiles/Makefile2:67: recipe for target 'CMakeFiles/jetson-inference.dir/all' failed
make[1]: *** [CMakeFiles/jetson-inference.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2
I saw some other post where someone already had that file located in another folder but it’s not the case. I tried using locate and find and it’s not on my Jetson.
Does anybody know how can I get the file and get my system running? Thanks on advance.