这里的操作系统使用的是Ubuntu 18.04,下载支持Python 3.6的Anaconda:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
下载的是5.1.0版本的
安装好Anacoda后,添加一个python 3.6的虚拟环境,
conda create -n py36 python=3.6.0
conda activate py36
在该环境下安装安装pytorch 1.8.1
conda install pytorch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 cpuonly -c pytorch
安装protobuf-3.6.0
sudo apt install build-essential
下载地址:Release Protocol Buffers v3.6.0 · protocolbuffers/protobuf · GitHub
具体安装可以参考Caffe框架整理 中的安装 protobuff
这里安装Python的时候,拷贝路径为
cp -r google ~/anaconda3/envs/py36/lib/python3.6/site-packages/
最后做软链接的时候将.so.22改成.so.16。
安装numpy 1.16.5
pip install numpy==1.16.5 -i https://pypi.tuna.tsinghua.edu.cn/simple
安装onnx 1.6
pip install onnx==1.6.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
先安装JDK,
这里我们依然安装JDK8
安装安卓NDK,下载地址:https://dl.google.com/android/repository/android-ndk-r17c-linux-x86_64.zip