C、C++中嵌入python (vs2017)

1、新建控制檯應用程序項目python

2、修改平臺(默認32位,如python裝的是64位則須要修改)ios

右擊解決方案-->配置管理器c++

2、加python的包含頭文件函數

右擊項目-->屬性-->c/c++-->常規-->附加包含目錄spa

3、加庫文件debug

libs目錄下原來的python37.lib複製爲python37_d.lib(debug版,release版的不須要)code

右擊解決方案-->配置管理器-->鏈接器-->輸入-->附加依賴項blog

4、代碼資源

#include "pch.h"
#include<python.h>
#include<iostream>

int main()
{
	Py_Initialize();//使用python以前,要調用Py_Initialize();這個函數進行初始化
	PyRun_SimpleString("print('hello world!')");

	Py_Finalize();  //結束Python解釋器,釋放資源
	return 0;
}

5、運行it

相關文章
相關標籤/搜索