本文主要是介绍The submodules were not downloaded! Please update submodules with “git submodule update --init“|简记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装 ncnn 遇到的一个小 bug 记录
- 执行的命令为:
cmake -DCMAKE_BUILD_TYPE=Release -DNCNN_VULKAN=ON ..
- 报错如下:
CMake Error at CMakeLists.txt:195 (message):The submodules were not downloaded! Please update submodules with "gitsubmodule update --init" and try again.-- Configuring incomplete, errors occurred!
一个很无奈的处理方法:
- 分析根本原因是,缺少 VULKAN 库的安装配置【20210924 补充】
- DNCNN_VULKAN=OFF 暂时关闭
cmake -DCMAKE_BUILD_TYPE=Release -DNCNN_VULKAN=OFF ..
后续整理的 正确 ncnn 编译安装过程成文如下
- ncnn 项目 | 之 nanodet demo_ncnn 运行测试 | 【ncnn 模型部署阶段 – 模型推理 python 示例运行】| 简记
- ncnn 正确编译 | 示例运行【 onnx2ncnn | caffe2ncnn | mxnet2ncnn | darknet2ncnn 】
这篇关于The submodules were not downloaded! Please update submodules with “git submodule update --init“|简记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!