Dumb question, but when I run `metaflow configure ...
# ask-metaflow
q
Dumb question, but when I run
metaflow configure aws
, I get
Copy code
Usage: metaflow [OPTIONS] COMMAND [ARGS]...
Try 'metaflow --help' for help.

Error: No such command 'configure'.
What am I doing wrong? Metaflow is installed and one of my coworkers set up our metaflow environment on AWS using https://github.com/outerbounds/terraform-aws-metaflow. So, I'm just trying to get everything configured on my end; so that, I can deploy a flow as a step function
1
a
What’s the output of metaflow —help?
q
Copy code
metaflow --help
Usage: metaflow [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  help    Show all available commands.
  status  Show flows accessible from the current working tree.
a
what's the output of
pip freeze | grep metaflow
?
q
Copy code
mamba list | grep metaflow
metaflow                  2.7.23             pyhd8ed1ab_0    conda-forge
I'm using conda
👀 1
That appears to be the issue. I removed the conda package and installed from pip and the configure option is there.
Copy code
metaflow --help
Usage: metaflow [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  configure  Configure Metaflow to access the cloud.
  help       Show all available commands.
  status     Show flows accessible from the current working tree.
  tutorials  Browse and access the metaflow tutorial episodes.
a
@quick-notebook-60799 I have addressed the issue here. Once the new package is live I will follow up here with you
This is addressed now! If you install latest metaflow, it should pull in the right package from conda-forge
Screen Shot 2023-02-28 at 11.45.19 AM.png
q
Sorry for the delay. That worked! Thanks @square-wire-39606!