Closed lexiaoyuan closed 3 years ago
看上去是下载第三方库失败了,试试 rm -rf third-party && git checkout third-party,然后再重新编译
看上去是下载第三方库失败了,试试 rm -rf third-party && git checkout third-party,然后再重新编译
还是失败,第三方库下载不下载来,有一些第三库中有引用了第三方库,有嵌套,如:
通过源码编译对于大多数用户来说还是很痛苦的。直接在https://paddle-lite.readthedocs.io/zh/latest/quick_start/release_lib.html#opt下载了opt工具,现在已经可以转换出.nb
文件了。
解决第三方库下载不成功的办法:
apt-get install software-properties-common
add-apt-repository ppa:git-core/ppa -y
apt update
# 参考:https://blog.csdn.net/qq_25863199/article/details/91358387
nslookup github.com
nslookup github.global.ssl.fastly.Net
sudo vim /etc/hosts sudo /etc/init.d/networking restart
git config --global http.postBuffer 524288000 # httpBuffer加大 git config --global http.maxRequestBuffer 100M git config --global core.compression 0 # 压缩配置
export GIT_TRACE_PACKET=1 export GIT_TRACE=1 export GIT_CURL_VERBOSE=1
- 然后再尝试
```bash
git checkout release/v2.8
rm -rf third-party && git checkout third-party
./lite/tools/build.sh build_optimize_tool
按照文档执行到2.1模型优化时,编译得到opt文件失败:
(用自己的数据集训练出了效果不错的模型,现在想部署到移动端) 附:(步骤都是按照教程来的)