运行python-shell时无法导入已安装的库

时间:2019-03-27 07:05:44

标签: python node.js python-3.x shell python-3.7

在我的node.js服务器文件中,我的python-shell代码段是:

let python_options = {
   mode: "text",
   pythonPath: python_process, //python3
   scriptPath:"./python/",
   args: ["--file",file_path]
};
let pyshell = new PythonShell.PythonShell("daily_build.py",python_options);

即使我知道确实安装了pandas库(并尝试通过自己在该计算机上的CLI导入来确认),我仍然遇到"ModuleNotFoundError: No module named 'pandas'"错误。

任何指针都是受欢迎的,因为我正竭尽全力试图找出答案。

0 个答案:

没有答案