运行 python 脚本使用 AutoSys 时出错

error while running python script using AutoSys

我是 运行 一个使用 AutoSys 的 python 脚本,但它给出了错误。 问题出在python的版本上,不是调用python3.8 auto sys而是调用python2.7 如何在 autosys 中更改 python 的路径?

选项:

第一步:检查主机上的python版本。下面将确认相应 python 二进制文件的路径。

bash-3.2$ which python
/usr/bin/python
bash-3.2$ which python3
/Library/Frameworks/Python.framework/Versions/3.9/bin/python3

第 2 步:检查 Autosys 作业属性以将 python 用于 2.x,将 python3 用于 3.x

update_job: YourAutosysJobName
command: python3 /absolute_path/python_script.py

乐于助人!!