[使用PIP在Windows上安装PCL python

问题描述 投票:3回答:2

如何在Windows上的python上安装点云库?

我正在使用Python发行版的Anaconda。

那么使用pip安装PCL的方式是什么?

如果您知道其他方法,请告诉我。

python point-cloud-library
2个回答
0
投票

PCL取决于Boost,VTK,Eigen,FLANN和QHull。

因此很难将PCL绑定到python。

使用C ++编写PCL代码。


0
投票

要在Windows上安装库https://github.com/strawlab/python-pcl,请按照以下步骤操作:

-> conda create -n ipk # create a new conda env. 
-> conda activate ipk # activate env.
-> conda update -n base -c defaults conda # update conda
-> conda config --add channels conda-forge # add conda-forge channels 
-> conda install -c sirokujira python-pcl # pcl installation 
-> conda install -c jithinpr2 gtk3 # Gtk+ Gui dependency 
-> conda install -y ipython # install ipython -> conda install -y jupyter # install jupyter
© www.soinside.com 2019 - 2024. All rights reserved.