TypeError:'fn'必须是可调用的(Prefect - Python)[已关闭]

xdyibdwo  于 2023-05-27  发布在  Python
关注(0)|答案(2)|浏览(138)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
4个月前关闭。
Improve this question
我开始学习一些prefect + python,我在一开始就遇到了一个奇怪的错误,一个非常简单的脚本:

我已经在两个不同的PC上试过了。

6ie5vjzr

6ie5vjzr1#

看起来您已经安装了Prefect 2,但正在按照Prefect 1的说明操作。
我建议从Prefect文档中的第一步教程开始:https://docs.prefect.io/tutorials/first-steps/

efzxgjgh

efzxgjgh2#

with语句的工作方式是,您定义的变量只存在于with语句本身下面的缩进代码块中。代码的结尾应该是:

with Flow("prueba 1") as flow:
    carga()
    flow.run()

相关问题