I have a question: I have been using Prefect to run pipelines with no problems until recently. However, a colleque of mine wanted to try the email notification and had installed prefect-email. Now I keep getting import error while running the existing code to run the pipeline that was working just fine before installing prefect-email.
from prefect import task, Flow, Parameter
Exception has occurred: ImportError
cannot import name 'Parameter' from 'prefect' (/home/ubuntu/.pyenv/versions/3.8.10/lib/python3.8/site-packages/prefect/__init__.py)
We are using prefect 2.0.1. Tried downgrading to 2.0.0 as well as tried clean installations many times with no luck.
Could someone help diagnose the issue and help me resolve it?