mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-05 18:55:23 +03:00
10 lines
236 B
Bash
10 lines
236 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -euxo pipefail
|
||
|
|
|
||
|
|
# Clone tensorrt_demos repo
|
||
|
|
git clone --depth 1 https://github.com/yeahme49/tensorrt_demos.git
|
||
|
|
|
||
|
|
# Build libyolo
|
||
|
|
cd ./tensorrt_demos/plugins && make all
|
||
|
|
cp libyolo_layer.so /usr/local/lib/libyolo_layer.so
|