Justin
02/25/2023, 9:13 PMfrom prefect import flow
@flow(log_prints=True)
def hello():
print("whats up prefectttt!!")
if __name__ == "__main__":
hello()
What I've already done:
• Create and work in a virtual env where prefect is up to date.
• I've set the PREFECT_API_URL so it is connected to my prefect-cloud workspace (Link)
• Connected to prefect-cloud via CLI with prefect cloud login
I've looked around and have yet to find anyone with this specific situation....Mason Menges
02/27/2023, 10:09 PM~/.prefect
ended up resolving this for me.Justin
02/28/2023, 7:54 AM