3

I want to install pcl on ubuntu16.04. in terminal I typed:

sudo add-apt-repository ppa:v-launchpad-jochen-sprickerhof-de/cpl
sudo apt-get update
sudo apt-get install libpcl-all

but

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libpcl-all

How can solve it?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
ma98
  • 83
  • 3
  • 14

1 Answers1

4

The ppa location you listed appears incorrect. It should be:

ppa:v-launchpad-jochen-sprickerhof-de/pcl

However, apt-cache search libpcl-all returns nothing on my system also running 16.04.

You could use apt-cache search libpcl and maybe choose a different package to install?

The answer from this post installs libpcl-dev (PCL 1.8) from the Ubuntu repo using:

sudo apt update
sudo apt install libpcl-dev

This guide provides an alternative installation method for 16.04.

Community
  • 1
  • 1
macourtney7
  • 521
  • 2
  • 10
  • 24