从 Node.js 调用 Python 函数
在项目中同时使用 Node.js 和 Python 时遇到的一个常见挑战是需要在 Node.js 中利用 Python 的机器学习功能。幸运的是,有一个简单的解决方案,使用 Node.js 中的“child_process”模块。
要从 Node.js 调用 Python 函数,请按照以下步骤操作:
npm install child_process
const { spawn } = require("child_process");
const pythonProcess = spawn("python", ["path/to/script.py", arg1, arg2, ...]);
print(dataToSendBack) sys.stdout.flush()
记住,spawn方法允许多个参数,从而可以构建 Python 脚本来调用特定函数。
此方法提供了一种在 Node.js 应用程序中利用 Python 功能的简单方法。
以上是如何在 Node.js 中使用 Python 机器学习?的详细内容。更多信息请关注PHP中文网其他相关文章!