How to make PCL Library and Python-pcl run on Ubuntu 18.04.2?How to install Point Cloud Library v1.8 (pcl-1.8.0) on Ubuntu 16.04.2 [LTS] for C++?PCL Ubuntu InstallationPoint Cloud Library (PCL) basic tutorial cmake and make errors on Ubuntu 16.04
Total I/O cost of a process
Passport expiration requirement for Jordan Visa
Why are boost/buck converters never fully integrated/all-in-one?
How to use FDE without needing to share the encryption password
Spanning tree of a rectangular grid
Translation Golf XLIX - An Accurate Shot
Do physicists understand why time slows down the faster the velocity of an object?
My name causes an issue with any booking! (names end with MR and MRS)
Can I permanently banish a devil from one layer of the Hells to another using the Banishment spell?
Unexpected Code Coverage Reduction
Very high precision zero crossing detection
Grep over multiple files redirecting to a different filename each time
Finding all the lines that can be defined a set of points
Is current (November 2019) polling about Democrats lead over Trump trustworthy?
What is the meaning of Text inside of AMS logo
Is policy routing bad?
Multivariate Limits
Warranty on lock damaged during attempted theft
Find constant that allows an integral to be finite
Best angle to attack
A question about relaxation oscillator
Why might SHA-384 throughput be lower than SHA-512 throughput in hashcat?
Why did a shuttle astronaut have an open book during ascent?
Dicht antonym - what is it?
How to make PCL Library and Python-pcl run on Ubuntu 18.04.2?
How to install Point Cloud Library v1.8 (pcl-1.8.0) on Ubuntu 16.04.2 [LTS] for C++?PCL Ubuntu InstallationPoint Cloud Library (PCL) basic tutorial cmake and make errors on Ubuntu 16.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I am trying to install PCL Library following mainly these instructions also comparabel to this topic, but I used 1.9.1 and want to connect by the python-pcl bindings.. Small test is working completely.
- I was not able to finde the location of the "Test pcl_viewer"-section. Where to find this?
- I am not sure of the "Cloud Viewer"-section. Do I need to install that? Where to put the Make and CPP file?
- How to fix the error from a test in python3 :
ImportError: libpcl_keypoints.so.1.7: cannot open shared object file: No such file or directory
Any help is appreciated.
18.04 software-installation
add a comment
|
I am trying to install PCL Library following mainly these instructions also comparabel to this topic, but I used 1.9.1 and want to connect by the python-pcl bindings.. Small test is working completely.
- I was not able to finde the location of the "Test pcl_viewer"-section. Where to find this?
- I am not sure of the "Cloud Viewer"-section. Do I need to install that? Where to put the Make and CPP file?
- How to fix the error from a test in python3 :
ImportError: libpcl_keypoints.so.1.7: cannot open shared object file: No such file or directory
Any help is appreciated.
18.04 software-installation
add a comment
|
I am trying to install PCL Library following mainly these instructions also comparabel to this topic, but I used 1.9.1 and want to connect by the python-pcl bindings.. Small test is working completely.
- I was not able to finde the location of the "Test pcl_viewer"-section. Where to find this?
- I am not sure of the "Cloud Viewer"-section. Do I need to install that? Where to put the Make and CPP file?
- How to fix the error from a test in python3 :
ImportError: libpcl_keypoints.so.1.7: cannot open shared object file: No such file or directory
Any help is appreciated.
18.04 software-installation
I am trying to install PCL Library following mainly these instructions also comparabel to this topic, but I used 1.9.1 and want to connect by the python-pcl bindings.. Small test is working completely.
- I was not able to finde the location of the "Test pcl_viewer"-section. Where to find this?
- I am not sure of the "Cloud Viewer"-section. Do I need to install that? Where to put the Make and CPP file?
- How to fix the error from a test in python3 :
ImportError: libpcl_keypoints.so.1.7: cannot open shared object file: No such file or directory
Any help is appreciated.
18.04 software-installation
18.04 software-installation
asked Jul 22 at 17:20
dh81dh81
1
1
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Try this version I back-ported from disco (using libpcl 1.8.1 from the Ubuntu repo):
sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
After you've done that then you should be able to run:
python3 -c 'import pcl'
and it will return with no error (as opposed to ModuleNotFoundError: No module named 'pcl'
).
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1160219%2fhow-to-make-pcl-library-and-python-pcl-run-on-ubuntu-18-04-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try this version I back-ported from disco (using libpcl 1.8.1 from the Ubuntu repo):
sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
After you've done that then you should be able to run:
python3 -c 'import pcl'
and it will return with no error (as opposed to ModuleNotFoundError: No module named 'pcl'
).
add a comment
|
Try this version I back-ported from disco (using libpcl 1.8.1 from the Ubuntu repo):
sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
After you've done that then you should be able to run:
python3 -c 'import pcl'
and it will return with no error (as opposed to ModuleNotFoundError: No module named 'pcl'
).
add a comment
|
Try this version I back-ported from disco (using libpcl 1.8.1 from the Ubuntu repo):
sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
After you've done that then you should be able to run:
python3 -c 'import pcl'
and it will return with no error (as opposed to ModuleNotFoundError: No module named 'pcl'
).
Try this version I back-ported from disco (using libpcl 1.8.1 from the Ubuntu repo):
sudo add-apt-repository ppa:sweptlaser/python3-pcl
sudo apt update
sudo apt install python3-pcl
After you've done that then you should be able to run:
python3 -c 'import pcl'
and it will return with no error (as opposed to ModuleNotFoundError: No module named 'pcl'
).
answered Sep 3 at 23:14
CompholioCompholio
2161 silver badge3 bronze badges
2161 silver badge3 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1160219%2fhow-to-make-pcl-library-and-python-pcl-run-on-ubuntu-18-04-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown