How do I configure my code to run in a specific conda environment?
I tried adding this to my flow config on deployment.yaml, but didn't work.. conda is not called at all...
infrastructure:
type: process
env: {}
labels: {}
name: null
command:
- conda
- run
- -n
- mongo-dump
- python
- -m
- prefect.engine
stream_output: true