Hello prefect community.... I am having issue impo...
# prefect-getting-started
a
Hello prefect community.... I am having issue importing schedules ........ImportError: cannot import name 'schedules' from 'prefect'.... I am using prefect Version: 2.10.9
2
s
Hello Amanuel, what is your import error? How are you importing the schedule? Were you able to install Prefect correctly?
n
prefect.schedules
is not a module, you need to import from
prefect.server.schemas.schedules
like this
a
thanks It is working now.... I was using
🙌 1
from prefect.schedules import IntervalSchedule
n
🎉