Hello all! I'm trying to setup a deployment to begin inside of a venv, specifically poetry. Right no...
r
Hello all! I'm trying to setup a deployment to begin inside of a venv, specifically poetry. Right now the way I've setup the deployment yaml file is like the following:
Copy code
infrastructure:
  type: process
  env: {}
  labels: {}
  name: null
  command:
  - poetry
  - run
  - python
  - -m
  - prefect.engine
  stream_output: true
  _block_type_slug: Process
however if I kick off this deployment from the cloud UI, it fails, and doesn't generate any logs. Is there a different way to run a flow within a specific VENV? Thanks!