Include Anaconda python 3.6 in Qt C++ application without Anaconda's Qt version

南笙酒味 提交于 2019-12-01 05:40:02

问题


I want to include Anaconda's Python 3.6 in my Qt C++ application. The reason why is that I want to be able to include a neural network in my C++ application, which is written in Python.

I tried to include Python in the following way, which I found online:

INCLUDEPATH += /home/[username]/anaconda3/include/python3.6m

LIBS += -L/home/[username]/anaconda3/lib/ -lpython3.6m

It finds the Python.h header but linking to the Python libraries causes Qt Creator to (apparently) use the Qt libraries of Anaconda and not the ones I downloaded and installed in my home folder.

This is problematic for two reasons:

  • My program needs Qt 5.9.1 and does not compile with Qt 5.6 (Anaconda's version)

  • Even if it compiled with Qt 5.6 there are suddenly errors of missing libraries, see below:

Is there any way to include Python from Anaconda but tell Qt Creator to use my custom Qt Version?


回答1:


Unkonwingly, I had the same problem again with a different application and thus posted a new question because I thought it was a different issue.

I found a solution in the mean time and posted the answer here.



来源:https://stackoverflow.com/questions/48398899/include-anaconda-python-3-6-in-qt-c-application-without-anacondas-qt-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!