Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-21 17:14:32 +01:00 committed by GitHub
parent 283a441966
commit 2003e086a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.**