From 2003e086a74681e5d4d109f7a6972f7a602ed111 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:14:32 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- matlab/python_used_by_matlab/README.md | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) 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.** + + + + + +