Tensorrt trtexec安装
tensorrt 版本8.6
1. 下载依赖模块的源码 /TensorRT$ proxychains4 git submodule update --init --recursive
需要漫长的时间,proxychain4是一个命令行FQ的工具,具体安装配置可以参考其他博客
2. mkdir build && cd build
3. /TensorRT/build $cmake .. -DPYTHON_EXECUTABLE=$(which python3)
不加python3路径会报错,具体参考https://github.com/onnx/onnx/issues/4469
4. /TensorRT/build $proxychains4 make -j12
还是需要代理,不然会报错
trtexec就在build目录下啦