在用cpp调用python时, 出现致命错误: no module named site , 原因解释器在搜索路径下没有找到python库.可以在调用Py_Initialize前,调用 Py_SetPythonHome(python_install_path) 添加搜索路径, 或者添加PYTHONPATH环境变量.
最近因为项目设计,有部分使用Python脚本,因此代码中需要调用python方法. 1.首先,在c#中调用python必须安装IronPython,在 http://ironpython.codeplex.com/ 中下载 2.对应用程序添加IronPython.dll和Microsoft.Scripting.dll 的引用 3.调用python: using System; using System.Collections.Generic; using System.Linq; using