<@ULVA73B9P> Even after install prefect-sqlalchemy...
# ask-marvin
a
@Marvin Even after install prefect-sqlalchemy its still not showing in the prefect blocks section in the webui
m
To have the
prefect-sqlalchemy
block show up in the Prefect WebUI, you need to register the block after installing the
prefect-sqlalchemy
package. Here are the steps: 1. Install the
prefect-sqlalchemy
package
(you've already done this):
Copy code
sh
    pip install prefect-sqlalchemy
2. Register the SQLAlchemy block:
Copy code
sh
    prefect block register -m prefect_sqlalchemy
After running the above command, the SQLAlchemy block should be available in the Prefect WebUI. For more detailed setup instructions, you can refer to the official `prefect-sqlalchemy` documentation. If you still do not see the block, there could be an issue with the registration. Ensure that the Prefect server is running and accessible. Link for reference: - Prefect SQLAlchemy Documentation