diff --git a/matlab/python_used_by_matlab/README.md b/matlab/python_used_by_matlab/README.md index 1828be7..e234e9a 100644 --- a/matlab/python_used_by_matlab/README.md +++ b/matlab/python_used_by_matlab/README.md @@ -14,3 +14,47 @@ Questions to [David Rotermund](mailto:davrot@uni-bremen.de) ## Check if you are ready +[Versions of Python Compatible with MATLAB Products by Release](https://de.mathworks.com/support/requirements/python-compatibility.html) + +You need to ask yourself or better Matlab if it is using the correct Python. You can check this via: + +```matlab +>> pyenv + +ans = + + PythonEnvironment with properties: + + Version: "3.11" + Executable: "/data_1/davrot/P3.11/bin/python3" + Library: "libpython3.11.so.1.0" + Home: "/data_1/davrot/P3.11" + Status: NotLoaded + ExecutionMode: InProcess + +``` + +If this is wrong (which it isn't in my case) then you can change it (temporarily?) with + +```matlab +>> pyenv('Version','/data_1/davrot/P3.11/bin/python3') + +ans = + + PythonEnvironment with properties: + + Version: "3.11" + Executable: "/data_1/davrot/P3.11/bin/python3" + Library: "libpython3.11.so.1.0" + Home: "/data_1/davrot/P3.11" + Status: NotLoaded + ExecutionMode: InProcess +``` + +**Obviously you need to use your location for your Python installation.** + + + + + +