Hi guys, i was new to prefect, i ran a very basic ...
# prefect-community
g
Hi guys, i was new to prefect, i ran a very basic code flow, and then i want to see it in UI, but i am getting error like this, "ValueError: Project my_first_flow not found. Run
client.create_project("my_first_flow")
to create it." And here is my basic code
from prefect import task, Flow
@task def hello_world(): return "hello prefect" @task def prefect_say(s:str): print(s) with Flow("my_first_flow") as f: r = hello_world() s = prefect_say(r) # f.run() f.visualize() f.register("my_first_flow")
j
Hello @gunarevuri Welcome to Prefect - I answered your question over in the Prefect UI channel.