I was able to get prefect installed, register a flow on prefect cloud, and now I would like to use prefect cloud to run flows stored on my AWS instance. I am trying to follow this, but even something as simple as installing the package at step 1 isn't working for me
pip install prefect[aws]
zsh: no matches found: prefect[aws]
k
Kevin Kho
04/05/2021, 12:19 AM
when using zshell and installing Python package extras, wrap the package in quotes like
"prefect[aws]"
try
pip install "prefect[aws]"
e
eric lumsden
04/05/2021, 12:22 AM
oh boy... that worked. Thanks. Now maybe I can find the config file to configure the region for the agent
k
Kevin Kho
04/05/2021, 12:23 AM
Happened to me too a while back 😅. Happy to help!