Support#
Feature Requests#
pyOpenMS is an evolving project. We are happy to learn about missing features you would like to see in pyOpenMS.
- Feel free to open an issue on GitHub issue
to request a novel feature.
Troubleshooting#
If you encounter a problem running pyOpenMS feel free to contact us by opening a GitHub issue or via our Homepage today.
Please provide information on what pyOpenMS version you have installed. You can check if importing pyOpenMS works and print your pyOpenMS version with:
1import pyopenms as oms
2
3print("Version: " + oms.VersionInfo.getVersion())
4print("OpenMP: " + str(oms.OpenMSBuildInfo.isOpenMPEnabled()))
5print("Build type: " + oms.OpenMSBuildInfo.getBuildType())
6print("Architecture: " + oms.OpenMSOSInfo.getBinaryArchitecture())