I have to install some custom library in a Python Databricks App. According to the documentation this should be possible through UC volumes:
https://docs.databricks.com/aws/en/dev-tools/databricks-apps/dependencies#install-wheel-files-from-u...
However, the volume is never mounted inside the app:
ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: '/Volumes/catalog/schema/volume/package_name-1.0.0-py3-none-any.whl'
Listing the root directory in the app (ls /) and showing the result with streamlit confirms that there is no directory /Volume in the app.
Is there any other way to install an app dependency without having to copy the source code or wheel into the app code?
Does anyone have any idea how to get my package installed in the app? Setting up a private repository to point pip to is not an option in this scenario.
Thanks, Nico