Hey, I am facing an issue with running a Flow in S...
# ask-metaflow
a
Hey, I am facing an issue with running a Flow in Step Functions with Metaflow version 2.7.16 and above. When running a basic Flow I get the following error:
metaflow.exception.MetaflowException: Downloading conda code packages from datastore backend s3 is unimplemented!
in version 2.7.16 and 2.7.17 but not in 2.7.15 This is the Flow(main() just prints out code):
Copy code
from metaflow import step, FlowSpec, project
from utils.constants import STAGING_PROJECT_NAME


@project(name=STAGING_PROJECT_NAME)
class StagingSampleFlow(FlowSpec):
    @step
    def start(self):
        """
        Start step of the Flow
        """
        from src.main_start import main

        main()
        self.next(self.end)

    @step
    def end(self):
        """
        End step of the Flow
        """
        from src.main_end import main

        main()


if __name__ == "__main__":
    StagingSampleFlow()
1