How to retrieve output files from dvc pipeline

I have created a pipeline and run it successfully, creating output files as per the pipeline I specified. I might have done something wrong, but when I try and dvc get this output file I get an error
Unable to find DVC file with output

My aim is to be able to get the model output file created via dvc pipeline into another project. Should I approach it differently?

Any details of it? Your repository structure? And the output of

  1. command dvc doctor
  2. the log output of your dvc get command with a -vv flag.

I solved the problem in the end (discussion in discord). I had used absolute paths in my dvc.yaml which I had manually created, and changing this to relative paths fixed the problem. It seems dvc get uses this to locate and retrieve files.

1 Like