Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2025 02:47 AM
how to install requirement.txt using github action.
- name: Install workspace requirements.txt on cluster
env:
CLUSTER_ID: ${{ secrets.DATABRICKS_CLUSTER_ID }}
run: |
databricks libraries install \
--cluster-id "$CLUSTER_ID" \
--whl "dbfs:/FileStore/engineering_workflows/requirements.txt"
But this does not work
But this does not work