搭建InsightFace人脸识别环境
1、创建环境
首先要查看自己linux环境的g++版本是否是-9及以上的版本,不是的话要通过以下方法更新自己的g++
# 查看g++的版本
g++ --version
# 更新g++的版本
sudo apt update
sudo apt install -y software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt update
sudo apt install -y ...
yangyongbiao.hashnode.dev5 min read