I have the following environment:
- Windows 10
- Python 3.8.10
- MATLAB R2020b
I'm trying to install matlabengine (pip install matlabengine) package, and I'm getting the following error:
RuntimeError: No compatible MATLAB installation found in Windows Registry. This release of MATLAB Engine API for Python is compatible with version 9.13. The found versions were 9.9
- What am I missing ? (according to https://pypi.org/project/matlabengine/) it seems I'm using the right versions.
- How can I check the versions I have (9.9 or 9.13 because as I wrote above I have MATLAB R2020b and Python 3.8.10).
You can try to install specific version of matlabengine.
pip install matlabengine==9.13.1If they cannot find your version, you might need to update pip.
Also, you can check your current matlabengine version.
pip show matlabengine