QProcess 无法启动 python 脚本

QProcess can't start python script

问题是 python 脚本没有 运行。我希望在目录中看到一个输出文件 (tmp.json),但我没有看到。有一些关于同一问题的问题,但解决方案对我不起作用。 python.exe 路径是正确的,因为我曾经使用 python.h 而不是 Qprocess 来嵌入 python.

主要

#include "mainwindow.h"
#include <QApplication>
#include <QDebug>
#include <QProcess>


int main(int argc, char *argv[])
{
    
    QProcess p;
    QStringList params;
    params << "F:/NLP/google_corpus/scrape_python/qt/cpy2/someFunction.py";
    p.start("C:/Users/A/AppData/Local/Programs/Python/Python39/python.exe", params);
    QString p_stdout = p.readAll();
    QString p_stderr = p.readAllStandardError();
    if ( p.state() == QProcess::NotRunning ) {
        return -2;
    };
    p.waitForFinished(-1);

    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

someFunction.py

import json
with open('F:\NLP\google_corpus\scrape_python\qt\cpy2tmp.json', 'w') as json_obj:
        json.dump(2, json_obj)

字符\在Python中用于转义序列,所以你应该写\来表达\在字符串中。

import json
with open('F:\NLP\google_corpus\scrape_python\qt\cpy2tmp.json', 'w') as json_obj:
        json.dump(2, json_obj)