I’m currently testing out flyte and still have a f...
# ask-the-community
j
I’m currently testing out flyte and still have a few issues. In the sandbox UI I can not see any workflows. When I try to register my own workflow with
python deploy.py
I get the following error message:
Copy code
Serializing Flyte workflows
Usage: pyflyte [OPTIONS] COMMAND [ARGS]...
Try 'pyflyte --help' for help.

Error: Invalid value for '-k' / '--pkgs': Illegal package value booster-team for parameter: <Option pkgs>. Expected for the form [a.b.c]
Registering Flyte workflows
Error: open flyte-package.tgz: no such file or directory
What is the best way to diagnose what’s going wrong?
h
Hey @Jonas Tischer sorry to hear you are having trouble getting started. Is this the guide you are following? https://docs.flyte.org/en/latest/getting_started/deploy.html#gettingstarted-deploy What are the contents of
deploy.py
? There is a simple command to register a bunch of examples (coming from here) You can try this if you are just trying to play around with some examples: https://docs.flyte.org/projects/flytectl/en/latest/gen/flytectl_register_examples.html#id1
y
@Jonas Tischer what is your package name ? I think your package name has
-
j
Yes that was the actual error. I replaced the
-
with an
_
. Thanks Yuvraj!
205 Views