繁体   English   中英

如何在Azure中部署运行python脚本的node.js应用程序?

[英]How to deploy a node.js app that runs a python script in Azure?

我正在尝试部署一个node.js应用,该应用调用用于后台任务的python脚本。 我实现它的方式是通过python-shell:

var pythonShell = require('python-shell');

var options = {
    pythonPath: 've-env/bin/python3',
    args:
    [
        req.query.term,
        req.params.id,
        req.session.user.searchName,
        req.session.user.searchKey
    ]
};

pythonShell.run('VideoAnalyzer/Search.py', options, function (err, data) {
    if (err) 
        throw err ;
    var values = JSON.parse(data[0]).value;
    var resultsByRel = values;
    res.render('video', {resultsByRel: resultsByRel, resultsByTime: [], searchTerm: req.query.term, url: req.query.url});
});

python的路径在options.pythonPath中指定(在称为“ ve-env”的python虚拟环境中)。

这在我的本地环境中有效。 但是,当我将应用程序部署到Azure App Service时,出现以下错误消息:

Error: spawn Unknown system error -8
at _errnoException (util.js:992:11)
at ChildProcess.spawn (internal/child_process.js:323:11)
at exports.spawn (child_process.js:502:9)
at new PythonShell (/home/site/wwwroot/node_modules/python-shell/index.js:59:25)
at Function.PythonShell.run (/home/site/wwwroot/node_modules/python-shell/index.js:160:19)
at Object.exports.search_result_video (/home/site/wwwroot/controllers/searchController.js:20:15)
at /home/site/wwwroot/routes/video.js:15:21
at Layer.handle [as handle_request] (/home/site/wwwroot/node_modules/express/lib/router/layer.js:95:5)
at next (/home/site/wwwroot/node_modules/express/lib/router/route.js:137:13)
at Route.dispatch (/home/site/wwwroot/node_modules/express/lib/router/route.js:112:3)

该应用程序已部署在节点版本为v8.9的Linux环境中。

部署之前我应该​​执行任何python环境配置吗?

部署之前我应该​​执行任何python环境配置吗?

答案是肯定的。 如果要在Azure App Service中运行python脚本,则需要在应用程序中安装python环境。请参考以下步骤:

请参考我的工作步骤,看看错误是否仍然出现。

步骤1:在门户网站上添加扩展(这里是Python 3.6.1 x64)

在此处输入图片说明

第2步:切换到Kudu CMD并命令cd Python364x64touch get-pip.pyget-pip.py通过编辑将URL https://bootstrap.pypa.io/get-pip.py的内容复制到get-pip.py按钮,然后运行python get-pip.py安装pip工具。

在此处输入图片说明

第3步:通过python -m pip install requests安装所需的任何软件包

在此处输入图片说明

然后,您需要修改代码的python配置:

var express = require('express');
var pythonShell = require('python-shell');
var router = express.Router();

var options = {
  pythonPath: 'D:/home/python364x64/python',
  scriptPath: 'D:/home/site/wwwroot'
  // args:
  // [
  //     req.query.term,
  //     req.params.id,
  //     req.session.user.searchName,
  //     req.session.user.searchKey
  // ]
};

var resultsByRel;

pythonShell.run('TestRequests.py', options, function (err, data) {
  if (err) throw err;
  // results is an array consisting of messages collected during execution
  var values = JSON.parse(data[0]);
  resultsByRel = values;
  console.log('results: %j', resultsByRel);
});

router.get('/', function(req, res, next) {
  res.send(resultsByRel);
  // res.render('executePython', resultsByRel );  
});

module.exports = router;

我简单的python脚本:

import requests

r= requests.get("https://www.bing.com")
print (r.status_code)

希望对您有帮助。 如有任何疑问,请告诉我。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM