Cannot find onnx/onnx.pb.h 解决方法
问题:
https://github.com/onnx/onnx/issues/1947
https://github.com/onnx/onnx/issues/3074
https://github.com/onnx/onnx/issues/2265
解决方法:源码编译onnx
- 下载onnx 源码, 编译
git clone https://github.com/onnx/onnx.git
cd onnx
git submodule update --init --recursive
export ONNX_ML=0
mkdir build & cd build
cmake ../
make -j66
onnx.pb.h 在build/onnx/onnx 目录下
标签:github,onnx,pb,Cannot,https,com,find From: https://www.cnblogs.com/michaelcjl/p/18499221