|
|
|
@ -18,7 +18,17 @@ rm -rf /var/lib/apt/lists/* |
|
|
|
apt-get clean |
|
|
|
|
|
|
|
# Install Python dependencies |
|
|
|
pip3 install onnxruntime_gpu |
|
|
|
case "$(arch)" in |
|
|
|
aarch64) |
|
|
|
echo "Downloading onnxruntime_gpu from Nvidia" |
|
|
|
wget -q https://nvidia.box.com/shared/static/i7n40ki3pl2x57vyn4u7e9asyiqlnl7n.whl -O onnxruntime_gpu-1.16.0-cp310-cp310-linux_aarch64.whl |
|
|
|
pip3 install onnxruntime_gpu-1.16.0-cp310-cp310-linux_aarch64.whl |
|
|
|
rm -f onnxruntime_gpu-1.16.0-cp310-cp310-linux_aarch64.whl |
|
|
|
;; |
|
|
|
x86_64) |
|
|
|
pip3 install onnxruntime_gpu |
|
|
|
;; |
|
|
|
esac |
|
|
|
pip3 install -r requirements.txt |
|
|
|
EOF |
|
|
|
|
|
|
|
|