我有一个节点服务器,我正在通过子进程运行 python。当我在本地主机中运行它时,它运行良好,但是当我将它部署在 heroku 中时,python 进程不起作用。我尝试在 buildpacks 中添加 python 并添加了“requirements.txt”,但它仍然不起作用。
const py = spawn('python', ['./python/recos.py',id_res])
py.stdout.on('data',function(data){
str = data.toString();
str = str.split(/\s+/);
dataString = str
console.log(dataString)
});
py.stdout.on('end', function(){
});
return ("end");
它返回字符串“end”,但不打印 python 的输出。所以我猜它没有处理python脚本。
我错过了一些步骤吗?谢谢你。