FHL D435I , Python iisue

Hi i bouat the camera from amazon but i’m trying to use it on python script but i got error in Mv3dRgbd.dll’ (or one of its dependencies) i tried to rewrite the path of it but the same error

   "c:/Users/96659/Desktop/Projects/ss/SDK/SDK/RGBD Camera SDK_Python/RGBD Camera SDK_Python/BasicDemo.py"
Traceback (most recent call last):
  File "c:\Users\96659\Desktop\Projects\ss\SDK\SDK\RGBD Camera SDK_Python\RGBD Camera SDK_Python\BasicDemo.py", line 3, in <module>
    from Mv3dRgbdImport.Mv3dRgbdApi import *
  File "c:\Users\96659\Desktop\Projects\ss\SDK\SDK\RGBD Camera SDK_Python\RGBD Camera SDK_Python\Mv3dRgbdImport\Mv3dRgbdApi.py", line 19, in <module>
    Mv3dRgbdDll = ctypes.WinDLL(dll_path)
                  ^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.11_3.11.2544.0_x64__qbz5n2kfra8p0\Lib\ctypes\__init__.py", line 376, in __init__
    self._handle = _dlopen(self._name, mode)
                   ^^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: Could not find module 'C:\Program Files (x86)\Common Files\Mv3dRgbdSDK\Runtime\Win64_x64\Mv3dRgbd.dll' (or one of its dependencies). Try using the full path with constructor syntax

import sys
new_path = "/path/to/your/library"
if new_path not in sys.path:
    sys.path.append(new_path)