gpt4 book ai didi

python - 从 C++ 运行 python 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 13:25:29 26 4
gpt4 key购买 nike

我想从 c 运行一个 python 脚本。我试过它编译成功但它给出错误“python 不被识别为内部或外部命令、可运行的程序或批处理文件”。

 #include <iostream>
using namespace std;
// main() is where program execution begins.

int main()
{
std::string filename = "hi.py";
std::string command = "python ";
command += filename;


FILE* in = popen(command.c_str(), "r");
pclose(in);
return 0;
}

最佳答案

您想使用 python 可执行文件的完整路径,例如:

std::string command = "/usr/bin/python ";

关于python - 从 C++ 运行 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33526534/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com