- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2026 03:35 AM
Hi Community Members,
I’m deploying a Python project as a Databricks App, but deployment fails during dependency installation with:
The dependency is pulled indirectly via:
From my understanding, Databricks Apps don’t allow OS-level dependencies, and MySQL client requires native MySQL/MariaDB libraries—so pip fails when trying to build it from source.
Questions:
Are there any supported workarounds for native dependencies in Databricks Apps?
Thanks in advance for your help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2026 08:55 PM
Hi All,
I’m still looking for guidance on this issue and haven’t been able to find a solution yet. If anyone has encountered something similar or has suggestions on how I can troubleshoot this further, I’d really appreciate your help.
Please let me know if more details, logs, or code snippets would be helpful — I can share whatever is needed.
Thanks !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2026 08:50 AM
Hi @vamsi_simbus ,
Databricks Apps don’t yet support installing OS-level packages (apt-get, pkg-config, native client libs).
Could you try to install a Python native MySQL client as a backend of ibis:
- Install the core framework only: ibis-framework
- Install the mysql connector: PyMySQL
- When you connect, you must explicitly tell Ibis to use the
pymysqldriver by adding it to the connection URL. This prevents Ibis from looking for the default system-level drivers:import ibis # Format: mysql+pymysql://user:pass@host:port/database con = ibis.connect("mysql+pymysql://root:password@localhost:3306/my_db")
Please let me know if it helps.
Best regards,