在 Python/Ubuntu 18.04 LTS 上安装 PCL 库

Emp*_*yee 1 python ubuntu point-cloud-library

如何在 Python/Ubuntu 18.04 LTS 上安装 PCL 库?

我尝试过不同的方法来做到这一点,但没有运气。

尝试import pcl结果:

ImportError: libpcl_keypoints.so.1.7: cannot open shared object file: No such file or directory
Run Code Online (Sandbox Code Playgroud)

Rig*_*reM 5

将其安装为系统范围的库,而不是 Python 模块。

sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
Run Code Online (Sandbox Code Playgroud)

这里