Hi,
I'm quite new here. I'm trying to perform a deployment of python file with dbx command. The file contains libraries to be installed. How may I deploy the file (together with its dependencies) to databricks?
Here are the commands I currently run:
`dbx deploy --job=Sample-Training-Job-File --no-rebuild`
`dbx launch --job=Sample-Training-Job-File --trace`
And my `Sample-Training-Job-File` is specified in the `depployment.yml` as follows. This is a databricks in Azure.
```
environments:
default:
strict_path_adjustment_policy: true
jobs:
- name: "Sample-Training-Job-File"
new_cluster:
spark_version: "10.4.x-scala2.12"
num_workers: 1
node_type_id: "Standard_DS3_v2"
spark_python_task:
python_file: "file://sample/training_file.py"
```
Thank you.