4.6.1 Install Python for Windows
Steps to install Python on Windows.
Note:
Python 3.13.2 or higher is required to use OML4Py Client 2.1 on Windows.Steps for downloading and installating Python 3.13.2:
Verify the Python Installation
You can now start
Python by running the command python in a command shell.
pythonPython 3.13.2 (tags/v3.13.2:6cb20a2, Jun 11 2025, 16:15:46) [MSC v.1943 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.To verify the directory where Python is installed, use the
sys.executable command from the sys package.
For
example:import sys
print(sys.executable)C:\Users\<YourUsername>\AppData\Local\Programs\Python\Python313\python.exeThis returns the absolute path of the Python executable binary.