ubuntu20.04安装Sophus
时间: 2023-10-28 16:06:52 浏览: 531
sophus库---安装包
安装Sophus库的步骤如下:
1. 打开终端,使用以下命令克隆Sophus库的Git仓库:
```
git clone https://github.com/strasdat/Sophus.git
```
2. 进入Sophus目录:
```
cd Sophus/
```
3. 创建build目录并进入:
```
mkdir build
cd build
```
4. 使用CMake生成Makefile文件:
```
cmake ..
```
5. 运行make命令进行编译:
```
make
```
6. 使用sudo make install命令安装Sophus库:
```
sudo make install
```
以上是在Ubuntu 20.04上安装Sophus库的步骤。
阅读全文