dosubot[bot] commented on issue #34266: URL: https://github.com/apache/superset/issues/34266#issuecomment-3101384846
<!-- Answer --> The error means Superset can't find the required driver for Google Sheets. In recent versions, optional database drivers like `shillelagh` (needed for Google Sheets) are not bundled and must be installed manually in the same environment where Superset runs. If you're using Docker or a virtual environment, install the driver with: ```bash /app/.venv/bin/pip install shillelagh[gsheets] ``` If you see "No module named 'pip'", run: ```bash /app/.venv/bin/python -m ensurepip ``` then retry the install command. If you're on Superset v5+ and using the new package manager, use: ```bash uv pip install shillelagh[gsheets] ``` After installing, restart Superset and try connecting to Google Sheets again. This should resolve the "Could not load database driver: BaseEngineSpec" error and restore gsheet connectivity. More details on this process and why it's needed can be found [here](https://github.com/apache/superset/issues/33691) and [here](https://github.com/apache/superset/issues/32217). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/3a3c75ff-6161-494a-82b1-468428b6d734?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [! [Share on X](https://img.shields.io/badge/X-share-black)](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/34266) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
