WindowsΒΆ

For using the Python bindings of the OpenCMISS libraries you will need to install:

If you intend to use virtual environments, make sure your target environment is active before proceeding with the following installation steps.

To install the Python bindings, open a command prompt (and activate your virtual environment) and type:

pip install <SDK_DIR>\lib\pythonX.Y\(Release|Debug)\opencmiss.iron
pip install <SDK_DIR>\lib\pythonX.Y\(Release|Debug)\opencmiss.zinc

Here, SDK_DIR is the installation root of your SDK, the X, and Y are placeholders for the major and minor version of Python that the bindings have been built for. The major and minor version number defined in the path must match the major and minor version number of the Python intreperter in use, and (Release|Debug) refers to the build type. For the current Windows SDK, this path could be for example:

pip install <SDK_DIR>\lib\python3.5\Release\opencmiss.iron

for Iron Python bindings or:

pip install <SDK_DIR>\lib\python3.5\Release\opencmiss.zinc

for Zinc Python bindings.