gpt4 book ai didi

python - 在 Next.js 中运行 python 脚本

转载 作者:行者123 更新时间:2023-12-04 13:08:42 39 4
gpt4 key购买 nike

是否可以通过 Next.js 调用 python 脚本来运行服务器端?我正在尝试设置一种方法来调用我已经开发的一些 python 包,以便在通过 React.js + Next.js 构建的网站上运行。我希望集成一些 sklearn 方法。
感谢您的任何建议。

最佳答案

在服务器启动
如果你想在 Next.js 服务器启动时运行脚本并在 package.json 中创建一个脚本并在之前运行它 npm start

"scripts": {
"prestart": "sh ./make-coffee.sh",
"start": "next start"
},
来自 Node.js
如果要从 Node.js(Next.js) 代码运行脚本,请使用子进程 Doc
const { exec } = require('child_process');

exec('"file/test.sh" arg1 arg2');
REST API
为 python 脚本创建 REST API 并从 next.js 服务器调用

关于python - 在 Next.js 中运行 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68013605/

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