f8f7564911
Turned off caching for all web interface pages. Opencv will no longer be compiled from source as part the setup.sh script, instead the libopencv-dev package will be installed.
12 lines
459 B
Bash
12 lines
459 B
Bash
#!/bin/sh
|
|
|
|
apt update -y
|
|
apt install -y pkg-config
|
|
apt install -y cmake g++ wget unzip git ffmpeg gstreamer1.0* libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
|
|
apt install -y x264 libx264-dev
|
|
apt install -y libopencv-dev apache2
|
|
add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
apt update -y
|
|
apt install -y gcc-10 gcc-10-base gcc-10-doc g++-10
|
|
apt install -y libstdc++-10-dev libstdc++-10-doc
|