balajij8
Contributor III

You can create the environment in the DAB

environments:
        - environment_key: default
          spec:
            environment_version: "5"
            dependencies:
              - xgboost
              # Add

You can also create a file with packages and use it in base environment in the DAB

  • File with packages - yaml
environment_version: '5'
dependencies:
  - xgboost>=2.0.0
  # Add libraries
  • Use it in base environment in the DAB
environments:
  - environment_key: default
    spec:
      base_environment: /Workspace/mlp/env.yaml