Hi, if I have a file that takes some arguments, an...
# flyte-support
s
Hi, if I have a file that takes some arguments, and defines a workflow. Am I able to run it with
pyflyte run
and pass these arguments there?
f
You want imperative workflow? It should work, but module load should result in the workflow. So the arguments will have to env vars
Else use Flyte remote
s
It should work, but module load should result in the workflow. So the arguments will have to env vars
You mean I need to pass arguments as environment variable, and not through
argparse.ArgumentParser
?
Ok, I think I started to understand the problem