Scripts are
bash
sudo apt install build-essentialThese libraries are required by AVBlocks:
sudo apt-get install libjpeg8 libtiff5 libpng16-16 libtbb2sudo apt-get install libjpeg8 libtiff5 libpng12-0 libtbb2sudo apt install cmakeRemove cmake that comes with Ubuntu 20.04 or 18.04:
sudo apt remove cmake
sudo apt purge --auto-remove cmakeInstall dependencies:
sudo apt install libssl-devDownload cmake 3.19:
version=3.19
build=1
mkdir -p ~/temp
cd ~/temp
wget https://cmake.org/files/v$version/cmake-$version.$build.tar.gz
tar -xzvf cmake-$version.$build.tar.gzBuild and install the extracted source by running:
cd ~/temp/cmake-$version.$build/
./bootstrap
make -j 4
sudo make installTo verify close and reopen Terminal:
cmake --versionsudo apt install ninja-buildInstall via Snap Store:
sudo snap install --classic code