设置环境变量
export PATH=/home/lyj/code_workspace/FormAISDK_linux/example/build:$PATH
安装Cmake
1、安装openssl
sudo apt-get install openssl ##安装openssl
sudo apt-get install libssl-dev ##安装openssl开发库
2、安装gcc
// 更新一下安装包就行了
sudo apt-get install build-essential
sudo apt-get update
3、安装cmake
wget https://cmake.org/files/v3.12/cmake-3.12.2-Linux-x86_64.tar.gz
tar zxvf cmake-3.12.2-Linux-x86_64.tar.gz
./bootstrap
make
sudo make install