在我的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'"
错误。
任何指针都是受欢迎的,因为我正竭尽全力试图找出答案。