I want to add into my QT project a plot functionality. Since it is much simplier to create a plot in Python (Matplotlib, bokeh, etc.) I've decided to save some time. How to make QT(c++) and python understand each other?
Asked
Active
Viewed 162 times
0
-
Does [PythonQwt](https://pypi.org/project/PythonQwt/) solve your problem? – Umbral Reaper May 05 '21 at 21:37
-
I need to use it from Qt (C++), not from python – R A V May 15 '21 at 16:45
-
To be clear, you want to access python libraries from C++? Or do you want to make a plot in python and embed it in a C++ Widget? – Umbral Reaper May 16 '21 at 08:54
-
If it's the latter, see https://stackoverflow.com/questions/18678982/embedding-a-matplotlib-chart-into-qt-c-application. It certainly doesn't seem to be a simple problem. – Umbral Reaper May 16 '21 at 08:56
-
Yes, I want somehow access a python libraries from C++. If it is possible – R A V May 16 '21 at 14:31