我如何 运行 Python 使用 Informatica 命令任务编写代码
How can I run Python code using Informatica command tasks
我正在尝试 运行 一个 Python 脚本,使用 Informatica 命令任务从 Web 中抓取数据。每次我启动工作流程时都会收到错误消息:
Command task instance [c_Run_Code]: execution of command [Test_Scrape] did not complete successfully with exit code [1]
我正在使用哈希爆炸:#!C\Python27\python.exe
作为代码的第一行,我发出的命令是:
C\Python27\python.exe C\Documents\Python\Test_Scrape.py
为什么我不断收到此错误?
我已经找到并解决了问题。对于那些希望做类似事情的人:将命令包装在批处理或 powershell 文件中,或者确保安装的 python 版本已添加到 PATH。
我正在尝试 运行 一个 Python 脚本,使用 Informatica 命令任务从 Web 中抓取数据。每次我启动工作流程时都会收到错误消息:
Command task instance [c_Run_Code]: execution of command [Test_Scrape] did not complete successfully with exit code [1]
我正在使用哈希爆炸:#!C\Python27\python.exe
作为代码的第一行,我发出的命令是:
C\Python27\python.exe C\Documents\Python\Test_Scrape.py
为什么我不断收到此错误?
我已经找到并解决了问题。对于那些希望做类似事情的人:将命令包装在批处理或 powershell 文件中,或者确保安装的 python 版本已添加到 PATH。