Hello Prefect Community! I am a brand new prefect ...
# ask-community
c
Hello Prefect Community! I am a brand new prefect user ... I am trying to follow step 3 in the tutorial here: • https://docs.prefect.io/latest/getting-started/quickstart/#step-3-turn-your-function-into-a-prefect-flow I am able to run this example using the prefect cloud, but when I try to start the local server I get this:
Copy code
% prefect server start
...
  File ".../python3.10/site-packages/sqlalchemy/util/compat.py", line 211, in raise_
    raise exception
  File ".../python3.10/site-packages/sqlalchemy/sql/schema.py", line 614, in __new__
    table._init(name, metadata, *args, **kw)
  File ".../python3.10/site-packages/sqlalchemy/sql/schema.py", line 689, in _init
    self._autoload(
  File ".../python3.10/site-packages/sqlalchemy/sql/schema.py", line 724, in _autoload
    conn_insp.reflect_table(
  File ".../python3.10/site-packages/sqlalchemy/engine/reflection.py", line 789, in reflect_table
    raise exc.NoSuchTableError(table_name)
sqlalchemy.exc.NoSuchTableError: block_spec
Thoughts on what this means? I also saw this same error when I tried running step 3 without doing this first
Copy code
% prefect cloud login
After I logged in running step 3 worked ... but then I logged out and tried to start the local server and got the above error ...