ImportError: DLL load failed while importing cv2

This error I am encountering in jupyter notebook "---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[2], line 1
----> 1 import cv2

File ~\AppData\Local\Programs\Python\Python310\lib\site-packages\cv2_init_.py:181
176 if DEBUG: print(“Extra Python code for”, submodule, “is loaded”)
178 if DEBUG: print(‘OpenCV loader: DONE’)
→ 181 bootstrap()

File ~\AppData\Local\Programs\Python\Python310\lib\site-packages\cv2_init_.py:153, in bootstrap()
149 if DEBUG: print(“Relink everything from native cv2 module to cv2 package”)
151 py_module = sys.modules.pop(“cv2”)
→ 153 native_module = importlib.import_module(“cv2”)
155 sys.modules[“cv2”] = py_module
156 setattr(py_module, “_native”, native_module)

File ~\AppData\Local\Programs\Python\Python310\lib\importlib_init_.py:126, in import_module(name, package)
124 break
125 level += 1
→ 126 return _bootstrap._gcd_import(name[level:], package, level)

ImportError: DLL load failed while importing cv2: The specified module could not be found." Can anyone provide solution for the same

Did you build the bindings yourself?