在嵌入式 Python 环境中,确保你的 C++ 应用程序能够加载静态编译的 Python 解释器,需要设置 Python 解释器的搜索路径。以下是实现这一目标的步骤:
1. 设置环境变量
你可以通过设置环境变量 PYTHONHOME
来指定 Python 解释器的根目录。这个环境变量告诉 Python 解释器去哪里查找标准库和其他资源。
#include <Python.h>
#include <cstdlib>
int main(int argc, char *argv[]) {
// Set PYTHONHOME environment variable
std::string pythonHome = "C:\\path\\to\\your\\embedded\\python";
std::wstring pythonHomeW(pythonHome.begin(), pythonHome.end());
_wputenv_s(L"PYTHONHOME", pythonHomeW.c_str());
// Initialize the Python interpreter
Py_Initialize();
// Run your Python script
PyRun_SimpleString("print('Hello from Python embedded in C++!')");
// Finalize the Python interpreter
Py_Finalize();
return 0;
}
2. 使用 Py_SetPath
从 Python 3.8 开始,可以使用 Py_SetPath
函数来指定 Python 库和标准库的路径。
#include <Python.h>
int main(int argc, char *argv[]) {
// Set the path to the embedded Python libraries and standard libraries
const wchar_t* pythonPath = L"C:\\path\\to\\your\\embedded\\python\\libs;C:\\path\\to\\your\\embedded\\python\\lib\\site-packages";
Py_SetPath(pythonPath);
// Initialize the Python interpreter
Py_Initialize();
// Run your Python script
PyRun_SimpleString("print('Hello from Python embedded in C++!')");
// Finalize the Python interpreter
Py_Finalize();
return 0;
}
3. 使用 Py_SetPythonHome
你也可以使用 Py_SetPythonHome
函数来指定 Python 解释器的根目录。
#include <Python.h>
int main(int argc, char *argv[]) {
// Set the path to the embedded Python home directory
const wchar_t* pythonHome = L"C:\\path\\to\\your\\embedded\\python";
Py_SetPythonHome(pythonHome);
// Initialize the Python interpreter
Py_Initialize();
// Run your Python script
PyRun_SimpleString("print('Hello from Python embedded in C++!')");
// Finalize the Python interpreter
Py_Finalize();
return 0;
}
4. 确保资源路径正确
在嵌入式环境中,确保你的应用程序能够找到以下资源:
- Python 库文件(如
libpython3.x.a
或libpython3.x.so
) - Python 标准库(如
Lib
目录) - 第三方库(如果在你的 Python 脚本中使用)
5. 跨平台注意事项
- Windows:确保
python3.dll
和python3x.dll
(如果存在)与你的应用程序一起打包,并且路径设置正确。 - Linux:确保
libpython3.x.so
和所有依赖库与你的应用程序打包在一起,并且路径设置正确。 - macOS:确保
libpython3.x.dylib
和所有依赖库与你的应用程序打包在一起,并且路径设置正确。
总结
通过设置 PYTHONHOME
环境变量、使用 Py_SetPath
或 Py_SetPythonHome
函数,你可以指定 Python 解释器的搜索路径,确保你的 C++ 应用程序能够加载静态编译的 Python 解释器。确保所有必要的资源路径正确设置,并且在打包时包含所有依赖库。