当前位置: 代码迷 >> 综合 >> Could not find TensorRT(missing: CUDA_CUBLAS_LIBRARIES)
  详细解决方案

Could not find TensorRT(missing: CUDA_CUBLAS_LIBRARIES)

热度:110   发布时间:2023-10-27 02:49:49.0

编译TensorRT相关项目, 报如题的错误
解决办法升级cmake到3.14.5,

wget https://cmake.org/files/v3.14/cmake-3.14.5.tar.gz
tar -zxvf cmake-3.14.5.tar.gz
cd cmake-3.14.5
./configure
make
sudo make install
cmake -version
  相关解决方案