mirror of
https://github.com/immich-app/immich.git
synced 2024-12-27 10:58:13 +02:00
9 lines
278 B
Bash
9 lines
278 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# binaries
|
||
|
mkdir armnn
|
||
|
curl -SL "https://github.com/ARM-software/armnn/releases/download/v23.11/ArmNN-linux-x86_64.tar.gz" | tar -zx -C armnn
|
||
|
|
||
|
# source to build ArmnnConverter
|
||
|
curl -SL "https://github.com/ARM-software/armnn/archive/refs/tags/v23.11.tar.gz" | tar -zx
|