I received a python package that had been compiled from a matlab function (MyFunction.m) with the SDK Compiler. I then installed the package in a conda virtual environment, so that I could call the package in a python script.
I attempted to import the package into python using Matlab's instructions: Unfortunately, I could not import the package and python returned this error (note that I commented the code for readability):
"matlabruntimeforpython3_9.pyd", the missing function, is actually in my "C:\Program Files\MATLAB\MATLAB Runtime\v912\bin\win64" folder. How do I get python to call that "matlabruntimeforpython3_9" module so I can import the MyFunction package? Do I need to install Matlab Runtime in my conda virtual environment folder somehow? I could not find any useful Matlab documentation to help.