You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the device.py class I need to import driver class.
def init(self):
"""
import intel real sense driver and initializes the device.
Circular buffers that contain data for each frame type
"""
from intel_realsense_devices.driver import Driver
#from driver import Driver
'
There are two ways I can do it I can either: from intel_realsense_devices.driver import Driver
This way works when I run it through ipython
The other way is: from driver import Driver
This way works when I run it through powershell.
If were to swap the two and run them each again I get the following error: ModuleNotFoundError: No module named 'intel_realsense_devices'
The text was updated successfully, but these errors were encountered:
In the device.py class I need to import driver class.
'
There are two ways I can do it I can either:
from intel_realsense_devices.driver import Driver
This way works when I run it through ipython
The other way is:
from driver import Driver
This way works when I run it through powershell.
If were to swap the two and run them each again I get the following error:
ModuleNotFoundError: No module named 'intel_realsense_devices'
The text was updated successfully, but these errors were encountered: