Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Pandinosaurus/9992cf6c5db88c6516c0330ccfc61a1c to your computer and use it in GitHub Desktop.

Select an option

Save Pandinosaurus/9992cf6c5db88c6516c0330ccfc61a1c to your computer and use it in GitHub Desktop.
Upgrade PCL from 1.7 to 1.8 on Ubuntu 16.04

Upgrade PCL from 1.7 to 1.8 on Ubuntu 16.04

Uninstall PCL 1.7

  1. Remove libpcl-dev

    sudo apt remove libpcl-dev
  2. Remove libraries

    cd /usr/lib/x86_64-linux-gnu
    sudo rm libpcl*
  3. Remove headers

    cd /usr/include
    sudo rm -r pcl-1.7

Install PCL 1.8 from .deb file

  1. Download .deb from here.

  2. Install it:

    sudo dpkg -i PCL-1.8.1-Linux.deb

Misc

  1. Install libproj-dev
    sudo apt-get update
    sudo apt-get install libproj-dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment