LoginSignup
3
4

More than 5 years have passed since last update.

Ubuntu 16.04にPython PCL bindingをインストールしてみた

Last updated at Posted at 2018-04-15

環境

  • Python3.5
  • Python virtualenv 15.0.1
  • PCL 1.7.2
  • Cython 0.25.2

インストール

$ sudo apt install python3-virtualenv
$ virtualenv -p python3 --no-site-packages venv/realsense
$ source vent/realsense/bin/activate
$ pip install numpy 
$ pip install Cython==0.25.2
$ git clone https://github.com/strawlab/python-pcl.git
$ cd python-pcl
$ python setup.py build_ext -i
$ python setup.py install

動作確認

$ python
import pcl
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4