获取源码
从ONNX Runtime官方网站获取ONNX Runtime源码文件。
- 进入“/path/to/ONNX_Runtime”目录。
1cd /path/to/ONNX_Runtime
- 配置Git网络代理。
1 2 3
git config --global http.sslVerify false git config --global https.sslVerify false git config --global http.proxy "http://用户名:密码@代理IP地址:代理端口"
- 请参见表2获取ONNX Runtime源码。
若服务器可以访问网络,则可以直接在服务器上使用wget命令下载源码。
cd /path/to/ONNX_Runtime wget https://github.com/microsoft/onnxruntime/archive/refs/tags/v1.19.2.zip --no-check-certificate
- 将源码复制至服务器“/path/to/ONNX_Runtime”。
- 解压ONNX Runtime安装包。
1unzip v1.19.2.zip得到onnxruntime-1.19.2包。

- 进入“/path/to/ONNX_Runtime/onnxruntime-1.19.2”目录。
cd /path/to/ONNX_Runtime/onnxruntime-1.19.2
- 安装Python依赖。
1pip install -r requirements.txt --user
安装过程中若出现如下问题,则设置镜像源安装。

pip install -r requirements.txt --user -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com/pypi/simple/