從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()
以上是如何在 Node.js 中使用 Python 機器學習?的詳細內容。更多資訊請關注PHP中文網其他相關文章!