-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module 'pyrealsense2' has no attribute 'pipeline' #9249
Comments
Hi @Try-Hello There was a Jetson case involving AttributeError: module 'pyrealsense2' has no attribute 'pipeline' where the solution in that particular case was found to be to copy .so files to the same directory that the user's project script was in. |
Sorry, my knowledge in this area is very weak. I installed pyrealsense2-aarch64 in this way:pip3 install pyrealsense2-aarch64 |
Sorry, my knowledge in this area is very weak. I installed pyrealsense2-aarch64 in this way:pip3 install pyrealsense2-aarch64 |
I believe that the .so files are part of the source-code installation method and not involved in the pip packages. I researched the pip3 install command that you used. The AttributeError: module 'pyrealsense2' has no attribute 'pipeline' error has occurred in a past case (see the link below) when installing with the command pip3 install pyrealsense2-aarch64. A RealSense team member advised uninstalling it and then installing with pip3 install pyrealsense2 instead. |
this problem has been solved. thank you very much. |
Great to hear, @Try-Hello - thanks very much for the update! |
hello,how did you solve this problem? |
You can refer to this:The same as the official website introduction. |
Case closed due to solution achieved and no further comments received. |
I use pyrealsense2-aarch64 in jetson nano.
import pyrealsense2 as rs
#And then define 'pipeline':
pipeline = rs.pipeline()
error:Module 'pyrealsense2' has no attribute 'pipeline'
The text was updated successfully, but these errors were encountered: